diff --git a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php
index 16afd091..724b41b5 100755
--- a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php
+++ b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php
@@ -101,6 +101,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
$model_user = model('App\Models\Usuarios\UserModel');
$user = $model_user->find(auth()->user()->id);
$clienteId = $user->cliente_id;
+
$POD = model('App\Models\Configuracion\ConfiguracionSistemaModel')->getPOD();
$this->viewData['breadcrumb'] = [
@@ -138,50 +139,11 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
$user = $model_user->find(auth()->user()->id);
$clienteId = $user->cliente_id;
- $datosPresupuesto = (object) array();
- $datosPresupuesto->POD = model('App\Models\Configuracion\ConfiguracionSistemaModel')->getPOD();
- $datosPresupuesto->paisList = model('App\Models\Configuracion\PaisModel')->getAllForMenu('id, nombre', 'nombre', true);
- $datosPresupuesto->papelFormatoList = $this->getPapelFormatoListItems($presupuestoEntity->papel_formato_id ?? null);
-
- $datosPresupuesto->papelInteriorNegro = model('App\Models\Configuracion\PapelGenericoModel')->getPapelForComparador('negro', false, false, false, false, true);
- $datosPresupuesto->papelInteriorNegroHq = model('App\Models\Configuracion\PapelGenericoModel')->getPapelForComparador('negrohq', false, false, false, false, true);
- $datosPresupuesto->papelInteriorColor = model('App\Models\Configuracion\PapelGenericoModel')->getPapelForComparador('color', false, false, false, false, true);
- $datosPresupuesto->papelInteriorColorHq = model('App\Models\Configuracion\PapelGenericoModel')->getPapelForComparador('colorhq', false, false, false, false, true);
-
- $datosPresupuesto->papelCubierta = model('App\Models\Configuracion\PapelGenericoModel')->getPapelForComparador('colorhq', true, false, false, false, true);
- $datosPresupuesto->papelSobrecubierta = model('App\Models\Configuracion\PapelGenericoModel')->getPapelForComparador('colorhq', false, true, false, false, true);
- $datosPresupuesto->papelGuardas = model('App\Models\Configuracion\PapelGenericoModel')->getPapelForComparador('colorhq', false, false, false, true, false);
-
- $datosPresupuesto->acabadosCubierta = $this->getAcabadosCubierta();
- $datosPresupuesto->acabadosSobrecubierta = $this->getAcabadosSobrecubierta();
-
- $datosPresupuesto->tipo_libro = $this->getTipoLibro($presupuestoEntity->tipo_impresion_id ?? null);
- $datosPresupuesto->color_impresion =
- $this->getTipoInterior($presupuestoEntity->id ?? null);
- $datosPresupuesto->tapa = $this->getTapa($presupuestoEntity->tipo_impresion_id ?? null);
-
- $datosPresupuesto->clienteList = $this->getClienteListItems($presupuestoEntity->cliente_id ?? null);
-
- $this->obtenerTiradas($presupuestoEntity);
- $this->obtenerDatosPapel($presupuestoEntity);
- $this->obtenerPaginasColor($presupuestoEntity);
- $this->obtenerDireccionesEnvio($presupuestoEntity);
-
- // Si el presupuesto está confirmado, se generan los datos del resumen
- if ($presupuestoEntity->estado_id == 2) {
- $this->generarResumen($presupuestoEntity);
- }
-
- $datosPresupuesto->paginasCuadernillo = [32, 28, 24, 20, 16];
- $presupuestoEntity->paginas_por_cuadernillo = $this->obtenerPaginasCuadernillo($presupuestoEntity);
$this->viewData['formAction'] = 'edit';
$this->viewData['paisList'] = $this->getPaisListItems();
- $this->viewData['presupuestoEntity'] = $presupuestoEntity;
- $this->viewData['datosPresupuesto'] = $datosPresupuesto;
-
$this->viewData['clienteId'] = $clienteId;
$this->viewData['POD'] = model('App\Models\Configuracion\ConfiguracionSistemaModel')->getPOD();
// Si se ha llamado a esta funcion porque se ha duplicado el presupuesto
@@ -323,6 +285,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
$direcciones = $reqData['direcciones'] ?? [];
$tipo_impresion_id = $this->getTipoImpresion($tipo, $cubierta['tipoCubierta']);
+ $lomoRedondo = $cubierta['lomoRedondo'] ?? 0;
if ($papelInteriorDiferente) {
$papel['negro'] = $modelPapelGenerico->getIdFromCode($interior['papelInterior']['negro']);
@@ -351,6 +314,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
'carasCubierta' => intval($cubierta['carasImpresion'] ?? 0),
'solapasCubierta' => intval($cubierta['solapas'] ?? 0),
'acabadosCubierta' => $cubierta['acabados'] ?? 0,
+ 'lomoRedondo' => $lomoRedondo,
];
// Sobrecubierta
@@ -369,7 +333,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
$datos_guardas = [
'papel' => $modelPapelGenerico->getIdFromCode($guardas['papel']),
'gramaje' => intval($guardas['gramaje']),
- 'caras' => intval($guardas['guardasImpresas']),
+ 'caras' => intval($guardas['caras']),
];
} else
$datos_guardas = false;
@@ -393,6 +357,18 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
);
$return_data = $this->calcular_presupuesto($datos_presupuesto, 0, false); //TRUE FOR DEBUG
+ if(array_key_exists('errors', $return_data)){
+ if($return_data['errors']->status == 1){
+ $return_data = [
+ 'errors' => (object) ([
+ 'status' => 1
+ ]),
+ ];
+ return $return_data;
+ }
+
+ }
+
if (array_key_exists('exception', $return_data)) {
return $this->failServerError(
$return_data['exception'] . ' - ' .
@@ -415,7 +391,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
if (!property_exists($coste_direccion, 'coste')) {
-
+
$errorModel = new ErrorPresupuesto();
$data['direccion'] = $direccion;
$data['peso'] = $return_data['peso'][$i];
@@ -432,7 +408,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
]),
];
return $return_data;
-
+
} else {
$coste_envio += $coste_direccion->coste;
}
@@ -448,21 +424,21 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
if (!property_exists($coste_direccion, 'coste')) {
$errorModel = new ErrorPresupuesto();
- $data['direccion'] = 'Sin direccion';
- $data['peso'] = $return_data['peso'][$i];
- $data['palets'] = 'Sin direccion';
- $errorModel->insertError(
- $id,
- auth()->user()->id,
- 'No se ha podido calcular el coste de envío',
- $data
- );
- $return_data = [
- 'errors' => (object) ([
- 'status' => 1
- ]),
- ];
- return $return_data;
+ $data['direccion'] = 'Sin direccion';
+ $data['peso'] = $return_data['peso'][$i];
+ $data['palets'] = 'Sin direccion';
+ $errorModel->insertError(
+ $id,
+ auth()->user()->id,
+ 'No se ha podido calcular el coste de envío',
+ $data
+ );
+ $return_data = [
+ 'errors' => (object) ([
+ 'status' => 1
+ ]),
+ ];
+ return $return_data;
} else {
$coste_envio += $coste_direccion->coste;
}
@@ -662,6 +638,8 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
$isColor = intval($reqData['isColor']) ?? 0;
$isHq = intval($reqData['isHq']) ?? 0;
+ $prototipo = intval($reqData['prototipo']) ?? 0;
+
$interior = $reqData['interior'] ?? [];
$cubierta = $reqData['cubierta'] ?? [];
$sobrecubierta = $reqData['sobrecubierta'] ?? [];
@@ -704,6 +682,8 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
'carasCubierta' => intval($cubierta['carasImpresion'] ?? 0),
'solapasCubierta' => intval($cubierta['solapas'] ?? 0),
'acabadosCubierta' => $cubierta['acabados'] ?? 0,
+ 'lomoRedondo' => $cubierta['lomoRedondo'] ?? 0,
+ 'cabezada' => $cubierta['cabezada'] ?? 'WHI',
];
// Sobrecubierta
@@ -722,7 +702,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
$datos_guardas = [
'papel' => $modelPapelGenerico->getIdFromCode($guardas['papel']),
'gramaje' => intval($guardas['gramaje']),
- 'caras' => intval($guardas['guardasImpresas']),
+ 'caras' => intval($guardas['caras']),
];
} else
$datos_guardas = false;
@@ -735,7 +715,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
'isColor' => $isColor,
'isHq' => $isHq,
'paginasCuadernillo' => $paginasCuadernillo,
-
+
'interior' => $interior,
'cubierta' => $cubierta,
'sobrecubierta' => $sobrecubierta,
@@ -855,6 +835,8 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
$datos_presupuesto['cubierta']['acabadosCubierta']['id'] = 0;
}
+ $datos_presupuesto['prototipo'] = $prototipo;
+
$id = $model_presupuesto->insertarPresupuestoCliente(
$id,
$selected_tirada,
@@ -937,14 +919,15 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
$presupuesto = $this->model->find($id);
$data = [];
if ($presupuesto) {
+ $data['lc'] = $presupuesto->lomo_cubierta;
+ $data['lsc'] = $presupuesto->lomo_sobrecubierta;
$data['datosGenerales']['titulo'] = $presupuesto->titulo;
$data['datosGenerales']['autor'] = $presupuesto->autor;
$data['datosGenerales']['isbn'] = $presupuesto->isbn;
$data['datosGenerales']['coleccion'] = $presupuesto->coleccion;
$data['datosGenerales']['referenciaCliente'] = $presupuesto->referencia_cliente;
$data['datosGenerales']['paginas'] = $presupuesto->paginas;
- $data['datosGenerales']['posPaginasColor'] = $presupuesto->paginas_color;
- $data['datosGenerales']['paginasCuadernillo'] = $presupuesto->paginas_cuadernillo;
+ $data['datosGenerales']['paginasCuadernillo'] = $presupuesto->paginasCuadernillo;
$data['datosGenerales']['tirada'] = $presupuesto->tirada;
$data['datosGenerales']['ivaReducido'] = $presupuesto->iva_reducido;
$data['datosGenerales']['excluirRotativa'] = $presupuesto->excluir_rotativa;
@@ -958,29 +941,34 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
$data['datosGenerales']['papelFormatoAncho'] = $presupuesto->papel_formato_ancho;
$data['datosGenerales']['papelFormatoAlto'] = $presupuesto->papel_formato_alto;
+ $data['datosGenerales']['posPaginasColor'] = $presupuesto->comp_pos_paginas_color;
$data['datosGenerales']['papelInteriorDiferente'] = $presupuesto->papel_interior_diferente;
+ $data['datosGenerales']['paginasColorConsecutivas'] = $presupuesto->paginas_color_consecutivas;
- $data['tiradasPrecio'] = [
- (object) [
- 'tirada' => $presupuesto->tirada,
- 'precio' => $presupuesto->total_confirmado,
- 'precio_u' => $presupuesto->total_precio_unidad,
- ]
- ];
+ $data['datosGenerales']['tipo'] = $this->getTipoLibro($presupuesto->tipo_impresion_id ?? null);
+ $data['datosGenerales']['prototipo'] = $presupuesto->prototipo;
- $tiradas_alternativas = json_decode($presupuesto->tirada_alternativa_json_data);
- for ($i = 0; $i < count($tiradas_alternativas); $i++) {
- $tirada = $tiradas_alternativas[$i];
- $data['datosGenerales']['tirada' . ($i + 2)] = $tirada->tirada;
- array_push($data['tiradasPrecio'], (object) [
- 'tirada' => intval($tirada->tirada),
- 'precio' => $tirada->total_pedido,
- 'precio_u' => $tirada->precio_unidad,
- ]);
- }
- usort($data['tiradasPrecio'], function ($a, $b) {
- return $a->tirada <=> $b->tirada;
- });
+ $datos_papel = $this->obtenerDatosPapel($presupuesto->id);
+ $data['interior'] = $datos_papel['interior'] ? $datos_papel['interior'] : [];
+
+ $data['cubierta'] = $datos_papel['cubierta'] ? $datos_papel['cubierta'] : [];
+ $data['cubierta']['tapa'] = $this->obtenerTipoTapa($presupuesto->tipo_impresion_id ?? null);
+ $data['cubierta']['lomoRedondo'] = $presupuesto->lomo_redondo ? 1 : 0;
+ $data['cubierta']['solapas'] = $presupuesto->solapas ? 1 : 0;
+ $data['cubierta']['solapas_ancho'] = $presupuesto->solapas_ancho;
+ $data['cubierta']['cabezada'] = $presupuesto->cabezada;
+ $modelAcabado = model("App\Models\Tarifas\Acabados\TarifaAcabadoModel");
+ $data['cubierta']['plastificado'] = $modelAcabado->getCodeFromId($presupuesto->acabado_cubierta_id);
+ $data['cubierta']['barniz'] = $modelAcabado->getCodeFromId($presupuesto->barniz_cubierta_id);
+ $data['cubierta']['estampado'] = $modelAcabado->getCodeFromId($presupuesto->estampado_cubierta_id);
+ $data['cubierta']['retractilado'] = $presupuesto->retractilado ? 1 : 0;
+
+ $data['sobrecubierta'] = array_key_exists('sobrecubierta', $datos_papel) ? $datos_papel['sobrecubierta'] : [];
+ $data['sobrecubierta']['solapas'] = $presupuesto->solapas_sobrecubierta ? 1 : 0;
+ $data['sobrecubierta']['solapas_ancho'] = $presupuesto->solapas_ancho_sobrecubierta;
+ $data['sobrecubierta']['plastificado'] = $modelAcabado->getCodeFromId($presupuesto->acabado_sobrecubierta_id);
+
+ $data['guardas'] = array_key_exists('guardas', $datos_papel) ? $datos_papel['guardas'] : [];
$modelLinea = new PresupuestoLineaModel();
$lineas = $modelLinea->where('presupuesto_id', $id)->findAll();
@@ -988,7 +976,15 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
[$data['datosGenerales']['paginasNegro'], $data['datosGenerales']['paginasColor']] =
$this->getPaginas($lineas);
+ $data['direcciones'] = $this->obtenerDireccionesEnvio($id, $presupuesto->cliente_id);
+ $tiradas_alternativas = json_decode($presupuesto->tirada_alternativa_json_data);
+ for ($i = 0; $i < count($tiradas_alternativas); $i++) {
+ $tirada = $tiradas_alternativas[$i];
+ $data['datosGenerales']['tirada' . ($i + 2)] = $tirada->tirada;
+
+ }
+
return $this->respond([
'status' => 1,
'data' => $data
@@ -1382,6 +1378,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
$carasCubierta = $datos_entrada['cubierta']['carasCubierta'];
$solapasCubierta = $datos_entrada['cubierta']['solapasCubierta'];
$acabadosCubierta = $datos_entrada['cubierta']['acabadosCubierta'] ?? [];
+ $lomoRedondo = $datos_entrada['cubierta']['lomoRedondo'];
// Sobrecubierta
$sobreCubierta = $datos_entrada["sobrecubierta"] ?? null;
@@ -1576,6 +1573,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
$input_data['isColor'] = 1;
$input_data['isHq'] = 1;
$input_data['uso'] = 'cubierta';
+ $input_data['lomoRedondo'] = $lomoRedondo;
$cubierta = PresupuestoClienteService::obtenerCubierta($input_data);
$coste_cubierta = 0.0;
@@ -2168,6 +2166,19 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
} else
return '';
}
+
+ protected function obtenerTipoTapa($tipo_impresion_id)
+ {
+ $model = model('App\Models\Configuracion\TipoPresupuestoModel');
+ $data = $model->get_isTapaDura($tipo_impresion_id);
+ if ($data) {
+ return 'dura';
+ } else {
+ return 'blanda';
+ }
+ }
+
+
protected function getTipoInterior($presupuestoId)
{
@@ -2250,18 +2261,18 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
}
}
- protected function obtenerDireccionesEnvio($presupuestoEntity)
+ protected function obtenerDireccionesEnvio($id, $cliente_id)
{
$model = model('App\Models\Presupuestos\PresupuestoDireccionesModel');
$model_direcciones = model('App\Models\Clientes\ClienteDireccionesModel');
$model_pais = model('App\Models\Configuracion\PaisModel');
- $direcciones = $model->where('presupuesto_id', $presupuestoEntity->id)->findAll();
+ $direcciones = $model->where('presupuesto_id', $id)->findAll();
$result = [];
$temp = [];
for ($i = 0; $i < count($direcciones); $i++) {
$direccion_id = $model_direcciones->getIdForPresupuestoCliente(
- $presupuestoEntity->cliente_id,
+ $cliente_id,
$direcciones[$i]->att,
$direcciones[$i]->email,
$direcciones[$i]->direccion,
@@ -2271,49 +2282,56 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
);
if (count($direccion_id) > 0) {
$temp = $direcciones[$i]->toArray();
- $temp['pais'] = $model_pais->where('id', $direcciones[$i]->pais_id)->first()->nombre;
- $temp['direccion_id'] = $direccion_id[0]->id;
- array_push($result, $temp);
+ array_push($result, [
+ 'id' => $temp['id'],
+ 'unidades' => $temp['cantidad'],
+ 'palets' => $temp['entregaPieCalle'],
+ ]);
}
}
if (count($result) > 0)
- $presupuestoEntity->direcciones_envio = $result;
+ return $result;
+ else
+ return [];
}
- protected function obtenerDatosPapel($presupuestoEntity)
+ protected function obtenerDatosPapel($presupuesto_id)
{
- $id = $presupuestoEntity->id;
+ $return_data = [];
$model = model('App\Models\Presupuestos\PresupuestoLineaModel');
- $data = $model->where('presupuesto_id', $id)->findAll();
+ $data = $model->where('presupuesto_id', $presupuesto_id)->findAll();
+
+ $modelPapelGenerico = model('App\Models\Configuracion\PapelGenericoModel');
+
if (count($data) > 0) {
foreach ($data as $linea) {
- // Se coje el primer papel que se encuentre para el interior
- // para presupuestos del cliente sólo se escoje un papel para el interior
- if (strpos($linea->tipo, "bn") !== false || strpos($linea->tipo, "color") !== false) {
- $presupuestoEntity->papel_interior = $linea->papel_id;
- $presupuestoEntity->gramaje_interior = $linea->gramaje;
- }
- // Si es cubierta
- else if (strpos($linea->tipo, "cubierta") !== false && strpos($linea->tipo, "sobrecubierta") === false) {
- $presupuestoEntity->papel_cubierta = $linea->papel_id;
- $presupuestoEntity->gramaje_cubierta = $linea->gramaje;
- $presupuestoEntity->paginas_cubierta = $linea->paginas;
- }
- // Si es sobrecubierta
- else if (strpos($linea->tipo, "sobrecubierta") !== false) {
- $presupuestoEntity->papel_sobrecubierta = $linea->papel_id;
- $presupuestoEntity->gramaje_sobrecubierta = $linea->gramaje;
- $presupuestoEntity->paginas_sobrecubierta = $linea->paginas;
- }
- // Si es guardas
- else if (strpos($linea->tipo, "guardas") !== false) {
- $presupuestoEntity->papel_guardas = $linea->papel_id;
- $presupuestoEntity->paginas_guardas = $linea->paginas;
+ if ($linea->tipo == 'lp_bn' || $linea->tipo == 'lp_bnhq' || $linea->tipo == 'lp_rot_bn') {
+ $return_data['interior']['negro']['tipo'] = $linea->tipo == 'lp_bn' || $linea->tipo == 'lp_rot_bn' ? 'negroEstandar' : 'negroPremium';
+ $return_data['interior']['negro']['papel'] = $modelPapelGenerico->getCodeFromId($linea->papel_id);
+ $return_data['interior']['negro']['gramaje'] = $linea->gramaje;
+ } else if ($linea->tipo == 'lp_color' || $linea->tipo == 'lp_colorhq' || $linea->tipo == 'lp_rot_color') {
+ $return_data['interior']['color']['tipo'] = $linea->tipo == 'lp_color' || $linea->tipo == 'lp_rot_color' ? 'colorEstandar' : 'colorPremium';
+ $return_data['interior']['color']['papel'] = $modelPapelGenerico->getCodeFromId($linea->papel_id);
+ $return_data['interior']['color']['gramaje'] = $linea->gramaje;
+ } else if ($linea->tipo == 'lp_cubierta') {
+ $return_data['cubierta']['papel'] = $modelPapelGenerico->getCodeFromId($linea->papel_id);
+ $return_data['cubierta']['gramaje'] = $linea->gramaje;
+ $return_data['cubierta']['paginas'] = $linea->paginas;
+ } else if ($linea->tipo == 'lp_sobrecubierta') {
+ $return_data['sobrecubierta']['papel'] = $modelPapelGenerico->getCodeFromId($linea->papel_id);
+ $return_data['sobrecubierta']['gramaje'] = $linea->gramaje;
+ $return_data['sobrecubierta']['paginas'] = $linea->paginas;
+ } else if ($linea->tipo == 'lp_guardas') {
+ $return_data['guardas']['papel'] = $modelPapelGenerico->getCodeFromId($linea->papel_id);
+ $return_data['guardas']['gramaje'] = $linea->gramaje;
+ $return_data['guardas']['paginas'] = $linea->paginas;
}
}
}
+
+ return $return_data;
}
protected function generarResumen($presupuestoEntity)
@@ -2469,4 +2487,5 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
return [$paginasNegro, $paginasColor];
}
+
}
diff --git a/ci4/app/Entities/Presupuestos/PresupuestoEntity.php b/ci4/app/Entities/Presupuestos/PresupuestoEntity.php
index 8aa6103d..3969835e 100755
--- a/ci4/app/Entities/Presupuestos/PresupuestoEntity.php
+++ b/ci4/app/Entities/Presupuestos/PresupuestoEntity.php
@@ -93,6 +93,8 @@ class PresupuestoEntity extends \CodeIgniter\Entity\Entity
'paginas_color_consecutivas' => null,
'papel_interior_diferente' => null,
'paginasCuadernillo' => null,
+ 'lomo_redondo' => null,
+ 'cabezada' => null,
];
protected $casts = [
"cliente_id" => "int",
@@ -161,5 +163,6 @@ class PresupuestoEntity extends \CodeIgniter\Entity\Entity
'paginas_color_consecutivas' => "boolean",
'papel_interior_diferente' => "boolean",
'paginasCuadernillo' => "int",
+ 'lomo_redondo' => "boolean",
];
}
diff --git a/ci4/app/Models/Configuracion/PapelGenericoModel.php b/ci4/app/Models/Configuracion/PapelGenericoModel.php
index 9b27c5a2..49f4a7a1 100755
--- a/ci4/app/Models/Configuracion/PapelGenericoModel.php
+++ b/ci4/app/Models/Configuracion/PapelGenericoModel.php
@@ -76,6 +76,22 @@ class PapelGenericoModel extends \App\Models\BaseModel
return $data;
}
+
+ public function getCodeFromId($id=0){
+ $builder = $this->db
+ ->table($this->table . " t1")
+ ->select(
+ "t1.code AS code"
+ )
+ ->where("t1.id", $id)
+ ->where("t1.is_deleted", 0);
+ $data = $builder->get()->getFirstRow();
+ // se convierte a de stdClass a array
+ $data = json_decode(json_encode($data), true);
+ return $data;
+ }
+
+
/**
* Get resource data.
*
diff --git a/ci4/app/Models/Configuracion/PapelImpresionModel.php b/ci4/app/Models/Configuracion/PapelImpresionModel.php
index c5da113b..eac4807c 100755
--- a/ci4/app/Models/Configuracion/PapelImpresionModel.php
+++ b/ci4/app/Models/Configuracion/PapelImpresionModel.php
@@ -322,4 +322,22 @@ class PapelImpresionModel extends \App\Models\BaseModel
return $builder->orderBy("t1.id", "asc")->get()->getResultObject();
}
+
+ public function getPapelGenericoCode($papel_id = 0){
+ $builder = $this->db
+ ->table($this->table . " t1")
+ ->select("t2.code AS code")
+ ->join("lg_papel_generico t2", "t1.papel_generico_id = t2.id", "left")
+ ->where("t1.id", $papel_id)
+ ->where("t1.is_deleted", 0)
+ ->where("t1.isActivo", 1)
+ ->where("t2.is_deleted", 0);
+
+ $result = $builder->get()->getResultObject();
+ if(count($result) > 0){
+ return $result[0]->code;
+ }
+ else
+ return "";
+ }
}
diff --git a/ci4/app/Models/Presupuestos/PresupuestoModel.php b/ci4/app/Models/Presupuestos/PresupuestoModel.php
index 08e314bd..f242d25e 100755
--- a/ci4/app/Models/Presupuestos/PresupuestoModel.php
+++ b/ci4/app/Models/Presupuestos/PresupuestoModel.php
@@ -130,6 +130,8 @@ class PresupuestoModel extends \App\Models\BaseModel
'paginas_color_consecutivas',
'papel_interior_diferente',
'paginasCuadernillo',
+ 'lomo_redondo',
+ 'cabezada',
];
protected $returnType = "App\Entities\Presupuestos\PresupuestoEntity";
@@ -407,7 +409,7 @@ class PresupuestoModel extends \App\Models\BaseModel
'guardas' => in_array(62, $data['servicios']) ? 1 : 0,
'faja_color' => in_array(16, $data['servicios']) ? 1 : 0,
'ferro' => in_array(24, $data['servicios']) ? 1 : 0,
- 'prototipo' => in_array(9, $data['servicios']) ? 1 : 0,
+ 'prototipo' => $data['prototipo'] ? 1 : 0,
'papel_formato_id' => is_null($papel_formato_id) ? 0 : $papel_formato_id->id,
'papel_formato_personalizado' => !$papel_formato_id ? 1 : 0,
'papel_formato_ancho' => !$papel_formato_id ? $data['tamanio']['ancho'] : null,
@@ -420,6 +422,8 @@ class PresupuestoModel extends \App\Models\BaseModel
'paginas' => $data['interior']['paginas'],
'tirada' => $tirada,
'solapas' => $data['cubierta']['solapasCubierta'] == 0 ? 0 : 1,
+ 'lomo_redondo' => $data['cubierta']['lomoRedondo'] == 0 ? 0 : 1,
+ 'cabezada' => $data['cubierta']['cabezada'] == 0 ? 0 : 1,
'solapas_ancho' => $data['cubierta']['solapasCubierta'] == 0 ? $data['cubierta']['solapasCubierta'] : 0,
'solapas_sobrecubierta' => !$data['sobrecubierta'] ? 0 : 1,
'solapas_ancho_sobrecubierta' => !$data['sobrecubierta'] ? 0 : $data['sobrecubierta']['solapas'],
diff --git a/ci4/app/Models/Tarifas/Acabados/TarifaAcabadoModel.php b/ci4/app/Models/Tarifas/Acabados/TarifaAcabadoModel.php
index eb1a2719..eac2ae8b 100644
--- a/ci4/app/Models/Tarifas/Acabados/TarifaAcabadoModel.php
+++ b/ci4/app/Models/Tarifas/Acabados/TarifaAcabadoModel.php
@@ -90,7 +90,7 @@ class TarifaAcabadoModel extends \App\Models\BaseModel
//JJO
$builder->where("t1.is_deleted", 0);
-
+
return empty($search)
? $builder
: $builder
@@ -115,8 +115,9 @@ class TarifaAcabadoModel extends \App\Models\BaseModel
return $builder->orderBy("t1.nombre", "asc")->get()->getResultObject();
}
- public function getTarifaPresupuestoAcabado($tarifa_id, $tirada, $proveedor_id = -1){
-
+ public function getTarifaPresupuestoAcabado($tarifa_id, $tirada, $proveedor_id = -1)
+ {
+
$builder = $this->db
->table($this->table . " t1")
->select(
@@ -129,18 +130,18 @@ class TarifaAcabadoModel extends \App\Models\BaseModel
->where("t1.is_deleted", 0)
//->where("t1.mostrar_en_presupuesto", 1)
->where("t2.is_deleted", 0);
-
+
$builder->where('t1.id =', $tarifa_id);
$builder->where('t2.tirada_min <=', $tirada);
$builder->where('t2.tirada_max >=', $tirada);
-
- if($proveedor_id != -1){
+
+ if ($proveedor_id != -1) {
$builder->where('t2.proveedor_id', $proveedor_id);
}
return $builder->get()->getResultObject();
}
- public function getNombreTarifaAcabado($id=-1)
+ public function getNombreTarifaAcabado($id = -1)
{
/*
Todos los servicios de encuadernacion activas que se pueden usar en presupuestos
@@ -185,4 +186,23 @@ class TarifaAcabadoModel extends \App\Models\BaseModel
return $builder->orderBy("t1.id", "asc")->get()->getResultObject();
}
+
+ public function getCodeFromId($id = 0)
+ {
+
+ $builder = $this->db
+ ->table($this->table . " t1")
+ ->select(
+ "t1.code AS code"
+ )
+ ->where("t1.id", $id)
+ ->where("t1.is_deleted", 0);
+
+ $data = $builder->get()->getResultObject();
+ if (count($data) > 0) {
+ return $data[0]->code;
+ } else {
+ return "";
+ }
+ }
}
diff --git a/ci4/app/Services/PresupuestoClienteService.php b/ci4/app/Services/PresupuestoClienteService.php
index 1dc5deb6..25a3a42c 100644
--- a/ci4/app/Services/PresupuestoClienteService.php
+++ b/ci4/app/Services/PresupuestoClienteService.php
@@ -77,6 +77,7 @@ class PresupuestoClienteService extends BaseService
$isHq = $data['isHq'];
$cliente_id = $data['cliente_id'];
$paginas_color = $data['paginas_color'];
+ $lomoRedondo = $data['lomoRedondo'];
$lineas_cubierta = [];
@@ -91,7 +92,8 @@ class PresupuestoClienteService extends BaseService
'isColor' => $isColor,
'isHq' => $isHq,
'cliente_id' => $cliente_id,
- 'a_favor_fibra' => $i
+ 'a_favor_fibra' => $i,
+ 'lomoRedondo' => $lomoRedondo
]);
if (count($lineas) > 0) {
diff --git a/ci4/app/Services/PresupuestoService.php b/ci4/app/Services/PresupuestoService.php
index 781b8127..dcf1fa87 100755
--- a/ci4/app/Services/PresupuestoService.php
+++ b/ci4/app/Services/PresupuestoService.php
@@ -838,9 +838,13 @@ class PresupuestoService extends BaseService
* Devuelve el ancho de la cubierta/sobrecubierta, incluido el lomo.
* El $uso tiene que ser "cubierta" o "sobrecubierta"
*/
- public static function getAnchoTotalExteriores($uso = "cubierta", $tipo_impresion_id = 1, $datosPedido = null, $maquina_id = -1)
+ public static function getAnchoTotalExteriores($uso = "cubierta", $tipo_impresion_id = 1, $datosPedido = null, $maquina_id = -1, $lomoRedondo = 0)
{
$ancho_total = 0;
+ $sangre_cubierta = self::SANGRE_FORMAS_CUBIERTA;
+ if($datosPedido->ancho > 210 || $datosPedido->alto > 297){
+ $sangre_cubierta = 15;
+ }
if ($datosPedido) {
// Tapa blanda (cosido y fresado)
@@ -861,8 +865,13 @@ class PresupuestoService extends BaseService
// si es cubierta
// se añade 7mm del ancho del cartón (2*3.5mm) por cada lado del lomo
// más 7mm de vuelo+cajo por cada lado. Por último, 20mm de sangre por cada lado
- if ($uso == "cubierta")
- $ancho_total += (2 * 7 + 2 * self::SANGRE_FORMAS_CUBIERTA + 7);
+ if ($uso == "cubierta"){
+ $ancho_total += (2 * 7 + 2 * $sangre_cubierta + 6);
+ if($lomoRedondo){
+ $ancho_total += 6;
+ }
+ }
+
// si es sobrecubierta
// Se añaden 5mm de sangre por cada lado + 2 * 7mm de vuelo portada y contraportada -> total 52
else
@@ -893,7 +902,7 @@ class PresupuestoService extends BaseService
// Tapa dura
else{
// Se le suma 20mm de sangre por cada lado. Como son 2 hojas independientes, se multiplica por 4
- $ancho_total += (4 * self::SANGRE_FORMAS_CUBIERTA);
+ $ancho_total += (4 * $sangre_cubierta);
}
}
else {
@@ -1716,6 +1725,7 @@ class PresupuestoService extends BaseService
$cliente_id = $input_data['cliente_id'];
$datosTipolog = $input_data['datosTipolog'] ?? null;
$a_favor_fibra = $datosPedido->a_favor_fibra ?? false;
+ $lomoRedondo = $input_data['lomoRedondo'] ?? 0;
$tipo = $isColor ? ($isHq ? 'colorhq' : 'color') : ($isHq ? 'negrohq' : 'negro');
@@ -1747,7 +1757,7 @@ class PresupuestoService extends BaseService
if ($uso == 'cubierta' || $uso == 'sobrecubierta') {
- $datosPedido->anchoExteriores = PresupuestoService::getAnchoTotalExteriores($uso, $tipo_impresion_id, $datosPedido, $maquina->maquina_id);
+ $datosPedido->anchoExteriores = PresupuestoService::getAnchoTotalExteriores($uso, $tipo_impresion_id, $datosPedido, $maquina->maquina_id, $lomoRedondo);
$datosPedido->altoExteriores = PresupuestoService::getAltoTotalExteriores($uso, $tipo_impresion_id, $datosPedido);
}
diff --git a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/items/_datosGenerales.php b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/items/_datosGenerales.php
index 35ef7f60..4640397b 100644
--- a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/items/_datosGenerales.php
+++ b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/items/_datosGenerales.php
@@ -101,7 +101,7 @@
-
+
@@ -110,16 +110,16 @@
-
+
diff --git a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/items/_resumen.php b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/items/_resumen.php
index db2ca608..1083ef86 100644
--- a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/items/_resumen.php
+++ b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/items/_resumen.php
@@ -4,12 +4,23 @@
-
Precio unidad: €
- Total base: €
- Iva (%): €
- Total: €
+ Precio unidad: €
+ Total base: €
+ Iva (%): €
+ Total: €
+
diff --git a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/viewPresupuestoclienteForm.php b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/viewPresupuestoclienteForm.php
index ff5c1418..7bd2e9ea 100644
--- a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/viewPresupuestoclienteForm.php
+++ b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/viewPresupuestoclienteForm.php
@@ -161,11 +161,9 @@
-
-
-
+
= $this->endSection() ?>
\ No newline at end of file
diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js
index d1a400ed..543c7dd6 100644
--- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js
+++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js
@@ -27,6 +27,7 @@ class DatosGenerales {
this.papelFormatoId = this.domItem.find("#papelFormatoId");
this.checkFormatoPersonalizado = this.domItem.find("#papelFormatoPersonalizado");
this.formatoPersonalizado = this.domItem.find("#formatoPersonalizado");
+ this.formatoEstandar = this.domItem.find("#formatoEstandar");
this.anchoPersonalizado = this.domItem.find("#papelFormatoAncho");
this.altoPersonalizado = this.domItem.find("#papelFormatoAlto");
@@ -346,6 +347,14 @@ class DatosGenerales {
this.coleccion.val(datos.coleccion);
this.referenciaCliente.val(datos.referenciaCliente);
+ this.cliente.setOption(datos.clienteId, datos.clienteNombre);
+ this.cliente.setVal(datos.clienteId);
+ $(this.cliente).trigger('change');
+
+ if (datos.excluirRotativa) {
+ this.excluirRotativa.prop('checked', true);
+ }
+
this.tirada1.val(parseInt(datos.tirada));
if (datos.tirada2)
this.tirada2.val(parseInt(datos.tirada2));
@@ -355,8 +364,10 @@ class DatosGenerales {
this.tirada4.val(parseInt(datos.tirada4));
if (datos.papelFormatoPersonalizado) {
- this.checkFormatoPersonalizado.prop(':checked', datos.checkFormatoPersonalizado);
- this.checkFormatoPersonalizado.trigger('change');
+ this.checkFormatoPersonalizado.prop('checked', true);
+ this.formatoEstandar.addClass('d-none');
+ this.formatoPersonalizado.removeClass('d-none');
+ this.formValidation.revalidateField('papel_formato_id');
this.altoPersonalizado.val(datos.papelFormatoAlto);
this.anchoPersonalizado.val(datos.papelFormatoAncho);
}
@@ -365,41 +376,27 @@ class DatosGenerales {
this.formatoLibro.setVal(datos.papelFormatoId);
}
- this.cliente.setOption(datos.clienteId, datos.clienteNombre);
- this.cliente.setVal(datos.clienteId);
- $(this.cliente).trigger('change');
-
this.paginas.val(parseInt(datos.paginas));
this.paginasNegro.val(parseInt(datos.paginasNegro));
- this.paginasColor.val(parseInt(datos.paginasColor));
- this.paginasColor.trigger('change');
+ this.paginasColor.val(parseInt(datos.paginasColor)).trigger('change');
+ this.pagColorConsecutivas.prop('checked', datos.paginasColorConsecutivas);
+ if (datos.paginasColorConsecutivas) {
+ this.divPapelDiferente.removeClass('d-none');
+ this.papelDiferente.prop('checked', datos.papelInteriorDiferente).trigger('change');
+ }
this.posPaginasColor.val(datos.posPaginasColor);
- /*
-
- this.papelFormatoId = this.domItem.find("#papelFormatoId");
- this.checkFormatoPersonalizado = this.domItem.find("#papelFormatoPersonalizado");
- this.formatoPersonalizado = this.domItem.find("#formatoPersonalizado");
- this.anchoPersonalizado = this.domItem.find("#papelFormatoAncho");
- this.altoPersonalizado = this.domItem.find("#papelFormatoAlto");
+ this.paginasCuadernillo.val(datos.paginasCuadernillo);
- this.fresado = $(this.domItem.find("#fresado")[0]);
- this.cosido = $(this.domItem.find("#cosido")[0]);
+ if (datos.tipo != "") {
+ this.tiposLibro.removeClass('selected');
+ this.tiposLibro.find('.image-presupuesto').removeClass('selected');
+ this.domItem.find('#' + datos.tipo).addClass('selected');
+ }
- this.tiposLibro = this.domItem.find(".tipo-libro");
-
-
- this.paginasCuadernillo = this.domItem.find("#paginasCuadernillo");
- this.pagColorConsecutivas = this.domItem.find("#pagColorConsecutivas");
- this.divPapelDiferente = this.domItem.find("#divPapelDiferente");
- this.papelDiferente = this.domItem.find("#papelDiferente");
- this.divPosPaginasColor = this.domItem.find("#divPosPaginasColor");
- this.posPaginasColor = this.domItem.find("#posPaginasColor");
-
- this.ivaReducido = this.domItem.find("#ivaReducido");
- this.excluirRotativa = this.domItem.find("#excluirRotativa");
- this.prototipo = this.domItem.find("#prototipo");*/
+ this.prototipo.prop('checked', datos.prototipo);
+ this.ivaReducido.val(datos.ivaReducido? 1: 0).trigger('change');
}
getDimensionLibro() {
@@ -452,13 +449,13 @@ class DatosGenerales {
#handleFormatoLibro() {
if (this.checkFormatoPersonalizado.is(':checked')) {
- this.formatoLibro.item.hide();
- this.formatoPersonalizado.show();
+ this.formatoEstandar.addClass('d-none');
+ this.formatoPersonalizado.removeClass('d-none');
this.formValidation.revalidateField('papel_formato_id');
}
else {
- this.formatoLibro.item.show();
- this.formatoPersonalizado.hide();
+ this.formatoEstandar.removeClass('d-none');
+ this.formatoPersonalizado.addClass('d-none');
this.formValidation.revalidateField('papel_formato_ancho');
this.formValidation.revalidateField('papel_formato_alto');
}
diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/direcciones.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/direcciones.js
index bf3b6caf..0d344745 100644
--- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/direcciones.js
+++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/direcciones.js
@@ -36,7 +36,7 @@ class Direcciones {
init() {
- $("#clienteId").on('change', this.#handleChangeCliente.bind(this));
+ $("#clienteId").on('change', this.handleChangeCliente.bind(this));
this.direccionesCliente.init();
this.btnAdd.on('click', this.#insertDireccion.bind(this));
@@ -44,7 +44,74 @@ class Direcciones {
}
+ cargarDatos(datos, datosGenerales) {
+ self = this;
+
+ try {
+
+ let tiradas_envio = [datosGenerales.tirada];
+ if (datosGenerales.tirada2) {
+ tiradas_envio.push(datosGenerales.tirada2);
+ }
+ if (datosGenerales.tirada3) {
+ tiradas_envio.push(datosGenerales.tirada3);
+ }
+ if (datosGenerales.tirada4) {
+ tiradas_envio.push(datosGenerales.tirada4);
+ }
+ tiradas_envio.sort((a, b) => a - b);
+
+ setTimeout(() => {
+ tiradas_envio.forEach(tirada => {
+ self.insertTirada(tirada);
+ });
+ }, 0);
+
+ setTimeout(function () {
+ $(`#containerTiradasEnvios .tirada-envio input[tirada="${datosGenerales.tirada}"]`).trigger('click');
+ }, 0);
+
+
+ for (let i = 0; i < datos.length; i++) {
+
+ let id = datos[i].id;
+ let unidades = datos[i].unidades;
+ let entregaPalets = datos[i].palets;
+ let divId = "dirEnvio-1";
+ let direccionesActuales = this.divDirecciones.find('.direccion-cliente');
+ if (direccionesActuales.length > 0) {
+ // the the lass item
+ let last = direccionesActuales[direccionesActuales.length - 1];
+ divId = "dirEnvio-" + (parseInt(last.id.split('-')[1]) + 1);
+ }
+
+ if (id == null || id <= 0 || id == undefined)
+ return;
+ if (unidades == null || unidades <= 0 || unidades == undefined)
+ return;
+
+ let peticion = new Ajax('/misdirecciones/get/' + id, {}, {},
+ (response) => {
+ let tarjeta = new tarjetaDireccion(this.divDirecciones, divId, response.data[0]);
+ tarjeta.setUnidades(unidades);
+ tarjeta.setEntregaPalets(entregaPalets);
+ tarjeta.card.find('.direccion-editar').on('click', this.#editUnits.bind(self));
+ tarjeta.card.find('.direccion-eliminar').on('click', this.#deleteDireccion.bind(self));
+ this.divDirecciones.append(tarjeta.card);
+ this.direcciones.push(tarjeta);
+ },
+ () => {
+ console.error('Error getting address');
+ });
+
+ peticion.get();
+ }
+ } catch (e) {
+ console.error(e);
+ $('#loader').modal('hide');
+ }
+ }
initValidation() {
@@ -248,7 +315,7 @@ class Direcciones {
}
- #handleChangeCliente() {
+ handleChangeCliente() {
this.direccionesCliente.setParams({ 'cliente_id': $("#clienteId").select2('data')[0].id })
this.direccionesCliente.empty();
diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/disenioCubierta.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/disenioCubierta.js
index 421e1d32..e39f399c 100644
--- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/disenioCubierta.js
+++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/disenioCubierta.js
@@ -25,9 +25,15 @@ class DisenioCubierta {
this.divTamanioSolapas = this.domItem.find("#divTamanioSolapas");
this.tamanioSolapasCubierta = $(this.domItem.find("#solapasCubierta"));
+ this.papelGuardas = this.domItem.find("#papelGuardas");
+ this.guardasImpresas = this.domItem.find("#guardasImpresas");
+ this.cabezada = this.domItem.find("#cabezada");
+
this.cartulinaEstucada = this.domItem.find("#cartulinaEstucada");
this.estucadoMate = this.domItem.find("#estucadoMate");
+ this.divPapelCubierta = this.domItem.find("#divPapelCubierta");
+
this.divGramajeCubierta = this.domItem.find("#divGramajeCubierta");
this.gramaje = this.domItem.find(".check-gramaje-cubierta");
this.gramaje170 = $(this.domItem.find("#divGramaje170Cubierta"));
@@ -38,8 +44,16 @@ class DisenioCubierta {
this.checksGramaje = $('.check-gramaje-cubierta');
+ this.cubiertaPlastificado = this.domItem.find("#plastificado");
+ this.cubiertaBarniz = this.domItem.find("#barniz");
+ this.cubiertaEstampado = this.domItem.find("#estampado");
+ this.cubiertaRetractilado = this.domItem.find("#retractilado");
+
this.configuracionSobrecubierta = this.domItem.find(".config-sobrecubierta");
this.sobrecubierta = this.domItem.find("#addSobrecubierta");
+ this.papelSobrecubierta = this.domItem.find("#papelSobrecubierta");
+ this.plastificadoSobrecubierta = this.domItem.find("#plastificadoSobrecubierta");
+
this.configuracionFaja = this.domItem.find(".config-faja");
this.faja = this.domItem.find("#addFaja");
@@ -113,6 +127,63 @@ class DisenioCubierta {
});
}
+
+ cargarDatos(datosCubierta, datosGuardas, datosSobrecubierta) {
+
+ if (datosCubierta.lomoRedondo) {
+ this.tapaDuraLomoRedondo.trigger('click');
+ }
+ else {
+ if (datosCubierta.tapa == "dura") {
+ this.tapaDuraLomoRecto.trigger('click');
+ }
+ else {
+ this.tapaBlanda.trigger('click');
+ }
+ }
+
+ if (datosCubierta.tapa == "dura") {
+ this.papelGuardas.val(datosGuardas.papel.code + "_" + datosGuardas.gramaje).trigger('change');
+ this.guardasImpresas.val(datosGuardas.paginas).trigger('change');
+ this.cabezada.val(datosCubierta.cabezada).trigger('change');
+ }
+ else {
+ this.carasCubierta.val(datosCubierta.caras).trigger('change');
+ if (datosCubierta.solapas) {
+ this.conSolapas.trigger('click');
+ this.tamanioSolapasCubierta.val(datosCubierta.solapas_ancho);
+
+ }
+ else {
+ this.sinSolapas.trigger('click');
+ }
+ }
+
+ this.divPapelCubierta.find(`[cod="${datosCubierta.papel.code}"]`).addClass('selected');
+
+ setTimeout(function () {
+ $(`#divGramajeCubierta .gramaje-cubierta input[data-value="${datosCubierta.gramaje}"]`).trigger('click');
+ }, 0);
+
+ this.cubiertaPlastificado.val(datosCubierta.plastificado).trigger('change');
+ this.cubiertaBarniz.val(datosCubierta.barniz).trigger('change');
+ this.cubiertaEstampado.val(datosCubierta.estampado).trigger('change');
+ if (datosCubierta.retractilado) {
+ setTimeout(() => {
+ this.cubiertaRetractilado.trigger('click');
+ }, 0);
+ }
+
+ if (datosSobrecubierta) {
+ this.sobrecubierta.trigger('click');
+ this.papelSobrecubierta.val(datosSobrecubierta.papel.code + "_" + datosSobrecubierta.gramaje).trigger('change');
+ this.solapasSobrecubierta.val(datosSobrecubierta.solapas_ancho);
+ this.plastificadoSobrecubierta.val(datosSobrecubierta.plastificado).trigger('change');
+ }
+
+ }
+
+
initValidation() {
const stepper = this.validatorStepper;
@@ -356,13 +427,13 @@ class DisenioCubierta {
let papelGuardas = this.domItem.find("#papelGuardas").children("option:selected").text();
guardas.papel = papelGuardas.split(' ')[0] + ' ' + papelGuardas.split(' ')[1];
guardas.gramaje = papelGuardas.split(' ')[2];
- guardas.guardasImpresas = this.domItem.find("#guardasImpresas").children("option:selected").text();
+ guardas.caras = this.domItem.find("#guardasImpresas").children("option:selected").text();
}
else {
let papelGuardas = this.domItem.find("#papelGuardas").children("option:selected").val();
guardas.papel = papelGuardas.split('_')[0];
guardas.gramaje = papelGuardas.split('_')[1];
- guardas.guardasImpresas = this.domItem.find("#guardasImpresas").children("option:selected").val();
+ guardas.caras = this.domItem.find("#guardasImpresas").children("option:selected").val();
}
return guardas;
}
diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/disenioInterior.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/disenioInterior.js
index 866e1f02..415b23e6 100644
--- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/disenioInterior.js
+++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/disenioInterior.js
@@ -7,6 +7,9 @@ class DisenioInterior {
this.validatorStepper = validatorStepper;
this.disenioInterior = this.domItem.find(".disenio-interior");
+ this.divPapelInterior = this.domItem.find("#divPapelInterior");
+ this.divPapelInteriorColor = this.domItem.find("#divPapelInteriorColor");
+ this.divGramajeInterior = this.domItem.find("#divGramajeInterior");
this.papelInterior = this.domItem.find(".papel-interior");
this.negroEstandar = this.domItem.find("#negroEstandar");
@@ -108,6 +111,78 @@ class DisenioInterior {
}
+
+ cargarDatos(datos, papelInteriorDiferente) {
+
+ if (papelInteriorDiferente) {
+
+ if (datos.negro) {
+ if (datos.negro.tipo.includes("Premium")) {
+ this.negroPremium.addClass('selected');
+ }
+ else {
+ this.negroEstandar.addClass('selected');
+ }
+
+ this.divPapelInterior.find(`[cod="${datos.negro.papel.code}"]`).addClass('selected');
+
+ setTimeout(function () {
+ $(`#divGramajeInterior .gramaje-interior input[data-value="${datos.negro.gramaje}"]`).trigger('click');
+ }, 0);
+
+ }
+ if (datos.color) {
+ if (datos.color.tipo.includes("Premium")) {
+ this.colorPremium_color.addClass('selected');
+ }
+ else {
+ this.colorEstandar_color.addClass('selected');
+ }
+
+ this.divPapelInteriorColor.find(`[cod="${datos.color.papel.code}"]`).addClass('selected');
+
+ setTimeout(function () {
+ $(`#divGramajeInteriorColor .gramaje-interior-color input[data-value="${datos.color.gramaje}"]`).trigger('click');
+ }, 0);
+ }
+
+
+ }
+ else {
+ if (datos.color) {
+ if (datos.color.tipo.includes("Premium")) {
+ this.colorPremium.addClass('selected');
+ }
+ else {
+ this.colorEstandar.addClass('selected');
+ }
+ this.divPapelInterior.find(`[cod="${datos.color.papel.code}"]`).addClass('selected');
+
+ setTimeout(function () {
+ $(`#divGramajeInterior .gramaje-interior input[data-value="${datos.color.gramaje}"]`).trigger('click');
+ }, 0);
+ }
+ else {
+ if (datos.negro.tipo.includes("Premium")) {
+ this.negroPremium.addClass('selected');
+ }
+ else {
+ this.negroEstandar.addClass('selected');
+ }
+ // mismo papel y gramaje
+ this.divPapelInterior.find(`[cod="${datos.negro.papel.code}"]`).addClass('selected');
+
+ setTimeout(function () {
+ $(`#divGramajeInterior .gramaje-interior input[data-value="${datos.negro.gramaje}"]`).trigger('click');
+ }, 0);
+ }
+
+ }
+
+
+ }
+
+
initValidation() {
const stepper = this.validatorStepper;
@@ -311,7 +386,7 @@ class DisenioInterior {
}
return null;
-
+
} catch (e) {
return null;
}
@@ -324,30 +399,29 @@ class DisenioInterior {
if (this.papelInterior.filter('.selected').length > 0) {
if (this.papelInterior_color.filter('.selected').length > 0) {
- if(forResumen)
- {
+ if (forResumen) {
return {
negro: $(this.papelInterior.filter('.selected').find('.form-label')).text(),
color: $(this.papelInterior_color.filter('.selected').find('.form-label')).text(),
}
}
- else{
+ else {
return {
negro: this.papelInterior.filter('.selected').attr('cod'),
color: this.papelInterior_color.filter('.selected').attr('cod')
}
}
-
+
}
- if (this.interiorColor.filter('.d-none').length > 0){
- if(forResumen){
+ if (this.interiorColor.filter('.d-none').length > 0) {
+ if (forResumen) {
return $(this.papelInterior.filter('.selected').find('.form-label')).text();
}
- else{
+ else {
return this.papelInterior.filter('.selected').attr('cod')
}
}
-
+
else
return null;
}
@@ -361,9 +435,9 @@ class DisenioInterior {
getGramaje() {
try {
- if (this.interiorColor.filter('.d-none').length == 0){
+ if (this.interiorColor.filter('.d-none').length == 0) {
let values = {
- negro: this.gramaje.filter(':checked') .attr('data-value'),
+ negro: this.gramaje.filter(':checked').attr('data-value'),
color: this.gramaje_color.filter(':checked').attr('data-value')
}
if (values.negro && values.color) {
@@ -371,10 +445,10 @@ class DisenioInterior {
}
else return null;
}
- else{
+ else {
return this.gramaje.filter(':checked').attr('data-value');
}
-
+
} catch (e) {
return null;
}
diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js
index c344a814..162adc3e 100644
--- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js
+++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js
@@ -65,7 +65,7 @@ class PresupuestoCliente {
this.btnSave.on('click', this.#savePresupuesto.bind(this));
if (window.location.href.includes("edit")) {
- $(".calcular-presupuesto").on('change', ()=>{});
+ $(".calcular-presupuesto").on('change', () => { });
this.#cargarPresupuesto();
const successMessage = sessionStorage.getItem('message');
if (successMessage) {
@@ -73,10 +73,10 @@ class PresupuestoCliente {
sessionStorage.removeItem('message');
}
}
- else{
+ else {
$(".calcular-presupuesto").on('change', this.checkForm.bind(this));
}
-
+
}
@@ -103,13 +103,13 @@ class PresupuestoCliente {
if (datos_to_check.direcciones) {
delete datos_to_check.direcciones;
}
- if(datos_to_check.posPaginasColor){
+ if (datos_to_check.posPaginasColor) {
delete datos_to_check.posPaginasColor;
}
if (Object.values(datos_to_check).every(this.#isValidDataForm)) {
try {
- setTimeout(function() {
+ setTimeout(function () {
$('#loader').modal('show');
}, 0);
@@ -238,13 +238,12 @@ class PresupuestoCliente {
{},
(response) => {
$('#loader').modal('hide');
- console.log(response);
if (this.datos["confirmar"] || window.location.href.includes("add")) {
- if(response.status){
+ if (response.status) {
sessionStorage.setItem('message', response.message);
window.location.href = response.url + '/' + response.status;
}
- else{
+ else {
popErrorAlert("No se ha podido guardar el presupuesto. Por favor, póngase en contacto con el departamento comercial.");
}
}
@@ -272,29 +271,35 @@ class PresupuestoCliente {
, "sk-alert-2", false);
return;
}
- else{
+ else {
popAlert2Hide();
}
if (response.tiradas && response.tiradas.length) {
+ let tiradas = {...response.tiradas};
+ tiradas = Object.keys(tiradas).map((key) => tiradas[key]);
+ tiradas.sort((a, b) => a - b);
this.divTiradasPrecios.empty();
- for (let i = 0; i < response.tiradas.length; i++) {
+ for (let i = 0; i < tiradas.length; i++) {
new tarjetaTiradasPrecio(
this.divTiradasPrecios,
('precio-tiradas-' + response.tiradas[i]),
- response.tiradas[i],
- (parseFloat(response.precio_u[i]) * parseInt(response.tiradas[i])).toFixed(2),
+ tiradas[i],
+ (parseFloat(response.precio_u[i]) * parseInt(tiradas[i])).toFixed(2),
response.precio_u[i]
);
if (this.actualizarTiradasEnvio)
- this.direcciones.insertTirada(response.tiradas[i]);
+ this.direcciones.insertTirada(tiradas[i]);
- this.lc.val(parseFloat(response.info.lomo_cubierta).toFixed(2));
- this.lsc.val(parseFloat(response.info.lomo_sobrecubierta).toFixed(2));
}
+ this.lc.val(parseFloat(response.info.lomo_cubierta).toFixed(2));
+ this.lsc.val(parseFloat(response.info.lomo_sobrecubierta).toFixed(2));
+ setTimeout(() => {
+ $(`#containerTiradasEnvios .tirada-envio input[tirada="${response.tiradas[0]}"]`).trigger('click');
+ }, 0);
}
// DEBUG
//console.log(response);
@@ -350,6 +355,7 @@ class PresupuestoCliente {
paginasCuadernillo: this.datosGenerales.paginasCuadernillo.val(),
tipo: this.datosGenerales.tiposLibro.filter('.selected').attr('id'),
+ prototipo: this.datosGenerales.prototipo.is(':checked') ? 1 : 0,
isColor: this.datosGenerales.getIsColor() ? 1 : 0,
isHq: this.disenioInterior.getIsHq() ? 1 : 0,
@@ -362,6 +368,7 @@ class PresupuestoCliente {
cubierta: {
tipoCubierta: this.disenioCubierta.disenioCubierta.filter('.selected').attr('id'),
+ lomoRedondo: this.disenioCubierta.disenioCubierta.filter('.selected').attr('id').includes('Redondo') ? 1 : 0,
papelCubierta: this.disenioCubierta.getPapel(),
gramajeCubierta: this.disenioCubierta.getGramaje(),
cabezada: this.disenioCubierta.getCabezada(),
@@ -429,16 +436,30 @@ class PresupuestoCliente {
{},
{},
(response) => {
- if (response.status === 1) {
- this.datosGenerales.cargarDatos(response.data.datosGenerales);
- /*this.disenioInterior.cargarDatos(response);
- this.disenioCubierta.cargarDatos(response);
- this.direcciones.cargarDatos(response);
- */
- }
- console.log(response);
- $('#loader').modal('hide');
- $(".calcular-presupuesto").on('change', this.checkForm.bind(this));
+
+ setTimeout(() => {
+ if (response.status === 1) {
+
+ this.lc.val(parseFloat(response.data.lc).toFixed(2));
+ this.lsc.val(parseFloat(response.data.lsc).toFixed(2));
+
+ this.datosGenerales.cargarDatos(response.data.datosGenerales);
+ this.direcciones.handleChangeCliente();
+ this.disenioInterior.cargarDatos(response.data.interior, response.data.datosGenerales.papelInteriorDiferente);
+ this.disenioCubierta.cargarDatos(response.data.cubierta, response.data.guardas, response.data.sobrecubierta);
+ this.direcciones.cargarDatos(response.data.direcciones, response.data.datosGenerales);
+
+ setTimeout(() => {
+ this.checkForm({ target: { id: 'tirada' } });
+ this.validationStepper.next();
+ this.validationStepper.next();
+ this.validationStepper.next();
+ this.validationStepper.next();
+ $('#loader').modal('hide');
+ }, 0);
+ }
+ $(".calcular-presupuesto").on('change', this.checkForm.bind(this));
+ }, 0);
},
() => {
$('#loader').modal('hide');
diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/resumen.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/resumen.js
index ee9e9a08..667d39a9 100644
--- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/resumen.js
+++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/resumen.js
@@ -1,5 +1,7 @@
+import previewFormas from "../preview.js";
+
class Resumen {
- constructor(domItem, datosGenerales, disenioInterior, disenioCubierta, direcciones) {
+ constructor(domItem, datosGenerales, disenioInterior, disenioCubierta) {
this.domItem = domItem;
@@ -39,18 +41,39 @@ class Resumen {
this.divSobrecubierta = $(this.domItem.find("#divResumenSobrecubierta"));
this.papelSobrecubierta = $(this.domItem.find("#resumenPapelSobrecubierta"));
this.gramajeSobrecubierta = $(this.domItem.find("#resumenGramajeSobrecubierta"));
- this.solapasSobrecubierta = $(this.domItem.find("#resumenSolapasSobrecubierta"));
- this.plastificadoSobrecubierta = $(this.domItem.find("#resumenPlastificadoSobrecubierta"));
+ this.solapasSobrecubierta = $(this.domItem.find("#resumenSolapaSobrecubierta"));
+ this.plastificadoSobrecubierta = $(this.domItem.find("#resumenPlastificadoSobreCubierta"));
this.precio_unidad = $(this.domItem.find("#resumenPrecioU"));
this.total_base = $(this.domItem.find("#resumenTotalBase"));
this.iva_porcentaje = $(this.domItem.find("#resumenIvaPorcentaje"));
this.iva = $(this.domItem.find("#resumenIva"));
this.total = $(this.domItem.find("#resumenTotal"));
+
+ this.divPreview = $(this.domItem.find("#pv_ec_shape"));
+ this.btnPreviewCubierta = $(this.domItem.find("#btnPreviewCubierta"));
+
+ this.init();
}
+
init() {
+ this.btnPreviewCubierta.on('click', this.#btnPreview.bind(this));
+ }
+
+
+ #btnPreview() {
+
+ if(this.divPreview.hasClass('d-none')){
+ this.btnPreviewCubierta.text('Ocultar desarrollo cubierta');
+ this.divPreview.removeClass('d-none');
+ this.generate();
+ }
+ else{
+ this.btnPreviewCubierta.text('Mostrar desarrollo cubierta');
+ this.divPreview.addClass('d-none');
+ }
}
generate() {
@@ -58,10 +81,32 @@ class Resumen {
this.titulo.text(this.datosGenerales.titulo.val());
this.tipoLibro.text(this.#capitalizeFirstLetter(this.datosGenerales.tiposLibro.filter('.selected').attr('id')));
- if (this.datosGenerales.checkFormatoPersonalizado.is(':checked'))
- this.formato.text(this.datosGenerales.anchoPersonalizado.val() + ' x ' + this.datosGenerales.altoPersonalizado.val());
- else
+ let ancho = 0, alto = 0;
+ if (this.datosGenerales.checkFormatoPersonalizado.is(':checked')) {
+ ancho = parseFloat(this.datosGenerales.anchoPersonalizado.val());
+ alto = parseFloat(this.datosGenerales.altoPersonalizado.val());
+ this.formato.text(ancho + ' x ' + alto);
+ }
+
+ else {
+ ancho = parseFloat(this.datosGenerales.papelFormatoId.find('option:selected').text().split(" x ")[0]);
+ alto = parseFloat(this.datosGenerales.papelFormatoId.find('option:selected').text().split(" x ")[1]);
this.formato.text(this.datosGenerales.papelFormatoId.find('option:selected').text());
+ }
+
+ new previewFormas(
+ this.divPreview,
+ this.datosGenerales.tiposLibro.filter('.selected').attr('id'),
+ this.disenioCubierta.disenioCubierta.filter('.selected').attr('id'),
+ "resumen",
+ {
+ ancho: ancho,
+ alto: alto,
+ lomo: $('#lc').val() === '' ? parseFloat('0.0') : parseFloat($('#lc').val()),
+ solapas: this.disenioCubierta.getSolapasCubierta(),
+ lomoRedondo: this.disenioCubierta.tapaDuraLomoRedondo.hasClass('selected'),
+ }
+ ).previewEsquemaCubierta();
this.paginas.text(this.datosGenerales.paginas.val());
this.paginasColor.text(this.datosGenerales.paginasColor.val());
@@ -105,7 +150,7 @@ class Resumen {
this.itemsCubiertaTapaBlanda.addClass('d-none');
const guardas = this.disenioCubierta.getGuardas(true);
this.papelGuardas.text(guardas.papel + ' ' + guardas.gramaje);
- this.guardasImpresas.text(guardas.guardasImpresas);
+ this.guardasImpresas.text(guardas.caras);
this.cabezada.text(this.disenioCubierta.getCabezada(true));
}
diff --git a/httpdocs/assets/js/safekat/pages/preview.js b/httpdocs/assets/js/safekat/pages/preview.js
new file mode 100644
index 00000000..2a31f4ac
--- /dev/null
+++ b/httpdocs/assets/js/safekat/pages/preview.js
@@ -0,0 +1,1046 @@
+
+class previewFormas {
+ constructor(container, tipoLibro, tipoTapa, size, datos) {
+
+ this.container = container;
+ this.tipoLibro = tipoLibro;
+ this.tipoTapa = tipoTapa;
+ this.size = size;
+
+ this.ancho = datos.ancho;
+ this.alto = datos.alto;
+ this.lomo = datos.lomo;
+ this.solapa = datos.solapa;
+ this.lomoRedondo = datos.lomoRedondo;
+
+ }
+
+ previewEsquemaCubierta() {
+
+ if (this.tipoLibro.includes("cosido") || this.tipoLibro.includes("fresado")) {
+ if (this.tipoTapa.toLowerCase().includes("dura"))
+ this.#portadaTapaDura();
+ else {
+ this.#portadaTapaBlanda();
+ }
+ }
+ /*else if (this.tipoLibro.includes("espiral") || this.tipoLibro.includes("wire-o")) {
+ if (this.tipoTapa.includes("dura"))
+ portadaEspiral(isThumbnail, true);
+ else
+ portadaEspiral(isThumbnail, false);
+ }
+ else if (this.tipoLibro.includes("grapado")) {
+ portadaGrapado(isThumbnail);
+ }*/
+
+ }
+
+
+ #portadaTapaBlanda() {
+
+ // Variables locales
+ let altoLibro, anchoLibro, lomoLibro, anchoCubierta, altoSangrado, anchoSangrado, anchoSolapa;
+ let styleCotas = { size: 12, family: 'Public Sans' };
+ let sangradoTexto = "Sangrado 5 mm";
+ let sangradoValor = parseFloat(5); // mm
+ let offsetSolapaValor = parseFloat(0); // mm
+
+ // Definicion de los parametros del Esquema de Cubierta (EC)
+ if (this.solapa == 0) {
+ if (this.size == "thumbnail") {
+ anchoSangrado = 350; // px
+ altoSangrado = (anchoSangrado * 0.647 > 300) ? 300 : anchoSangrado * 0.647; // px
+ } else {
+ anchoSangrado = 800; // px
+ altoSangrado = (anchoSangrado * 0.647 > 650) ? 650 : anchoSangrado * 0.647; // px
+ }
+
+ altoLibro = altoSangrado * 0.97;
+ anchoLibro = anchoSangrado * 0.419;
+ anchoSolapa = 0;
+ lomoLibro = anchoSangrado * 0.133;
+ anchoCubierta = (2 * anchoLibro) + (2 * anchoSolapa) + lomoLibro;
+
+ } else {
+ if (this.size == "thumbnail") {
+ anchoSangrado = 350; // px
+ altoSangrado = (anchoSangrado * 0.647 > 300) ? 300 : anchoSangrado * 0.647; // px
+ } else {
+ anchoSangrado = 750; // px
+ altoSangrado = (anchoSangrado * 0.647 > 650) ? 650 : anchoSangrado * 0.647; // px
+ }
+ altoLibro = altoSangrado * 0.95;
+ anchoLibro = anchoSangrado * 0.28;
+ anchoSolapa = anchoSangrado * 0.163;
+ lomoLibro = anchoSangrado * 0.09;
+ anchoCubierta = (2 * anchoLibro) + (2 * anchoSolapa) + lomoLibro;
+ }
+
+ // Clear the canvas element
+ this.container.empty();
+ // Get the element for placing the graphical elements
+ var previewEC = new Two({ fitted: true }).appendTo(this.container);
+ // Calculate the center of the canvas element
+ var origenEC = new Two.Vector(previewEC.width / 2, previewEC.height / 2);
+
+ var sangrado = previewEC.makeRectangle(
+ origenEC.x,
+ origenEC.y,
+ anchoSangrado,
+ altoSangrado
+ );
+ sangrado.stroke = 'black';
+ sangrado.dashes = [5, 5];
+ sangrado.fill = '#FCEAF1';
+ sangrado.linewidth = 1;
+
+ if (this.solapa != 0) {
+ var solapas = previewEC.makeRectangle(
+ origenEC.x,
+ origenEC.y,
+ anchoCubierta,
+ altoLibro);
+ solapas.stroke = 'black';
+ solapas.linewidth = 1;
+
+ // Cotas Solapas
+ if (this.size != "thumbnail") {
+ var cotaSolapa2 = previewEC.makeDobleArrow(
+ origenEC.x - anchoCubierta / 2,
+ origenEC.y - (altoLibro / 3),
+ origenEC.x - anchoLibro - lomoLibro / 2,
+ origenEC.y - (altoLibro / 3),
+ 10);
+ cotaSolapa2.linewidth = 2;
+ var cotaSolapa1 = previewEC.makeDobleArrow(
+ origenEC.x + anchoCubierta / 2,
+ origenEC.y - (altoLibro / 3),
+ origenEC.x + anchoLibro + lomoLibro / 2,
+ origenEC.y - (altoLibro / 3),
+ 10);
+ cotaSolapa1.linewidth = 2;
+
+ // Textos Solapas
+ let stylesSolapa = { size: 18, family: 'Public Sans' };
+ previewEC.makeText("Solapa 1", origenEC.x + anchoLibro + (lomoLibro + anchoSolapa) / 2, origenEC.y, stylesSolapa);
+ previewEC.makeText("Solapa 2", origenEC.x - anchoLibro - (lomoLibro + anchoSolapa) / 2, origenEC.y, stylesSolapa);
+ // Textos Cotas Solapas
+ previewEC.makeText(pvObj.anchoSolapa + " mm", origenEC.x - anchoLibro - (lomoLibro + anchoSolapa) / 2, origenEC.y - (altoLibro / 3) + 15, styleCotas);
+ previewEC.makeText(pvObj.anchoSolapa + " mm", origenEC.x + anchoLibro + (lomoLibro + anchoSolapa) / 2, origenEC.y - (altoLibro / 3) + 15, styleCotas);
+ }
+
+ }
+
+ var libro = previewEC.makeRectangle(
+ origenEC.x,
+ origenEC.y,
+ ((2 * anchoLibro) + lomoLibro),
+ altoLibro);
+ libro.stroke = 'black';
+ libro.linewidth = 1;
+
+ var lomo = previewEC.makeRectangle(
+ origenEC.x,
+ origenEC.y,
+ lomoLibro,
+ altoLibro);
+ lomo.stroke = 'black';
+ lomo.fill = '#F4F8F2';
+ lomo.linewidth = 1;
+
+ // Cotas y textos
+ if (this.size != "thumbnail") {
+ // Cotas:
+ var cotaAnchoCubierta = previewEC.makeDobleArrow(
+ origenEC.x - (anchoSangrado / 2),
+ origenEC.y + (altoLibro / 2) + 35,
+ origenEC.x + (anchoSangrado / 2),
+ origenEC.y + (altoLibro / 2) + 35,
+ 10);
+ cotaAnchoCubierta.linewidth = 2;
+ var cotaAltoCubierta = previewEC.makeDobleArrow(
+ origenEC.x + (anchoCubierta / 2) + 35,
+ origenEC.y + (altoSangrado / 2),
+ origenEC.x + (anchoCubierta / 2) + 35,
+ origenEC.y - (altoSangrado / 2),
+ 10);
+ cotaAltoCubierta.linewidth = 2;
+ var cotaAltoLibro = previewEC.makeDobleArrow(
+ origenEC.x + (lomoLibro / 2) + 35,
+ origenEC.y + (altoLibro / 2),
+ origenEC.x + (lomoLibro / 2) + 35,
+ origenEC.y - (altoLibro / 2),
+ 10);
+ cotaAltoLibro.linewidth = 2;
+ var cotaLomo = previewEC.makeDobleArrow(
+ origenEC.x - (lomoLibro / 2),
+ origenEC.y + (altoLibro / 3),
+ origenEC.x + (lomoLibro / 2),
+ origenEC.y + (altoLibro / 3),
+ 10);
+ cotaLomo.linewidth = 2;
+ var cotaContraportada = previewEC.makeDobleArrow(
+ origenEC.x - (lomoLibro / 2 + anchoLibro),
+ origenEC.y - (altoLibro / 3),
+ origenEC.x - (lomoLibro / 2),
+ origenEC.y - (altoLibro / 3),
+ 10);
+ cotaContraportada.linewidth = 2;
+ var cotaPortada = previewEC.makeDobleArrow(
+ origenEC.x + (lomoLibro / 2),
+ origenEC.y - (altoLibro / 3),
+ origenEC.x + (lomoLibro / 2 + anchoLibro),
+ origenEC.y - (altoLibro / 3),
+ 10);
+ cotaPortada.linewidth = 2;
+
+
+ // Textos:
+ // Titulos generales
+ let stylesEC = { size: 22, weight: 'bold', family: 'Public Sans' };
+ previewEC.makeText("Portada", origenEC.x + (lomoLibro + anchoLibro) / 2, origenEC.y, stylesEC);
+ previewEC.makeText("Contraportada", origenEC.x - (lomoLibro + anchoLibro) / 2, origenEC.y, stylesEC);
+ let a = previewEC.makeText("Lomo", origenEC.x, origenEC.y, stylesEC).rotation = -Math.PI / 2;
+ // Sangrados
+ let styleSangrado = { size: 10, family: 'Public Sans', style: 'italic', fill: 'red' };
+ previewEC.makeText(sangradoTexto, origenEC.x, origenEC.y + (altoLibro / 2 + 20), styleSangrado);
+ previewEC.makeText(sangradoTexto, origenEC.x, origenEC.y - (altoLibro / 2 + 20), styleSangrado);
+ previewEC.makeText(sangradoTexto, origenEC.x + (lomoLibro / 2 + anchoLibro + anchoSolapa + 20), origenEC.y, styleSangrado).rotation = -Math.PI / 2;
+ previewEC.makeText(sangradoTexto, origenEC.x - (lomoLibro / 2 + anchoLibro + anchoSolapa + 20), origenEC.y, styleSangrado).rotation = -Math.PI / 2;
+ // Cotas
+ previewEC.makeText(pvObj.lomoLibro + " mm", origenEC.x, origenEC.y + (altoLibro / 3) + 15, styleCotas);
+ previewEC.makeText(pvObj.anchoLibro + offsetSolapaValor + " mm", origenEC.x - (lomoLibro / 2 + anchoLibro / 2), origenEC.y - (altoLibro / 3) + 15, styleCotas);
+ previewEC.makeText(pvObj.anchoLibro + offsetSolapaValor + " mm", origenEC.x + (lomoLibro / 2 + anchoLibro / 2), origenEC.y - (altoLibro / 3) + 15, styleCotas);
+ previewEC.makeText(pvObj.altoLibro + " mm", origenEC.x + (lomoLibro / 2) + 25, origenEC.y, styleCotas).rotation = -Math.PI / 2;
+ previewEC.makeText(pvObj.altoLibro + (2 * sangradoValor) + " mm", origenEC.x + (lomoLibro / 2 + anchoLibro + anchoSolapa) + 50, origenEC.y, styleCotas).rotation = -Math.PI / 2;
+ previewEC.makeText((2 * pvObj.anchoLibro) + (2 * (pvObj.anchoSolapa + offsetSolapaValor)) + pvObj.lomoLibro + (2 * sangradoValor) + " mm",
+ origenEC.x,
+ origenEC.y + (altoLibro / 2) + 50,
+ styleCotas);
+
+ }
+
+ previewEC.update();
+
+ }
+
+
+ #portadaTapaDura() {
+
+ // Variables locales
+ let altoLibro, anchoLibro, lomoLibro, anchoCubierta, altoSangrado, anchoSangrado;
+ let styleCotas = { size: 12, family: 'Public Sans' };
+ let sangradoTexto = "Sangrado 20 mm";
+ let sangradoValor = parseFloat(20); // mm
+ if(this.ancho > 210 || this.alto > 297){
+ sangradoValor = parseFloat(15); // mm
+ sangradoTexto = "Sangrado 15 mm";
+ }
+ let anchoPliegue = parseFloat(7); // mm cajo
+ let altoPliegue = parseFloat(7); // mm
+ let anchoCarton = parseFloat(6); // mm
+ if(this.lomoRedondo)
+ anchoCarton += parseFloat(6); // mm
+ // Definicion de los parametros del Esquema de Cubierta (EC)
+ if (this.size == "thumbnail") {
+ anchoSangrado = 350; // px
+ altoSangrado = (anchoSangrado * 0.647 > 300) ? 300 : anchoSangrado * 0.647; // px
+ } else {
+ anchoSangrado = 800; // px
+ altoSangrado = (anchoSangrado * 0.647 > 650) ? 650 : anchoSangrado * 0.647; // px
+ }
+ altoLibro = altoSangrado * 0.88;
+ anchoLibro = anchoSangrado * 0.39;
+ lomoLibro = anchoSangrado * 0.133;
+ anchoCubierta = (2 * anchoLibro) + lomoLibro;
+
+ // Clear the canvas element
+ this.container.empty();
+ // Get the element for placing the graphical elements
+ var previewEC = new Two({ fitted: true }).appendTo($(this.container)[0]);
+
+ // Calculate the center of the canvas element
+ var origenEC = new Two.Vector(previewEC.width / 2, previewEC.height / 2);
+
+ var sangrado = previewEC.makeRectangle(
+ origenEC.x,
+ origenEC.y,
+ anchoSangrado,
+ altoSangrado
+ );
+ sangrado.stroke = 'black';
+ sangrado.dashes = [5, 5];
+ sangrado.fill = '#FCEAF1';
+ sangrado.linewidth = 1;
+
+ var libro = previewEC.makeRectangle(
+ origenEC.x,
+ origenEC.y,
+ ((2 * anchoLibro) + lomoLibro),
+ altoLibro);
+ libro.stroke = 'black';
+ libro.linewidth = 1;
+
+ var lomo = previewEC.makeRectangle(
+ origenEC.x,
+ origenEC.y,
+ lomoLibro,
+ altoLibro);
+ lomo.stroke = 'black';
+ lomo.fill = '#F4F8F2';
+ lomo.linewidth = 1;
+
+ // Cotas y textos
+ if (this.size != "thumbnail") {
+ // Cotas:
+ var cotaAnchoCubierta = previewEC.makeDobleArrow(
+ origenEC.x - (anchoSangrado / 2),
+ origenEC.y + (altoLibro / 2) + 35,
+ origenEC.x + (anchoSangrado / 2),
+ origenEC.y + (altoLibro / 2) + 35,
+ 10);
+ cotaAnchoCubierta.linewidth = 2;
+ var cotaAltoCubierta = previewEC.makeDobleArrow(
+ origenEC.x + (anchoCubierta / 2) + 40,
+ origenEC.y + (altoSangrado / 2),
+ origenEC.x + (anchoCubierta / 2) + 40,
+ origenEC.y - (altoSangrado / 2),
+ 10);
+ cotaAltoCubierta.linewidth = 2;
+ var cotaAltoLibro = previewEC.makeDobleArrow(
+ origenEC.x + (lomoLibro / 2) + 35,
+ origenEC.y + (altoLibro / 2),
+ origenEC.x + (lomoLibro / 2) + 35,
+ origenEC.y - (altoLibro / 2),
+ 10);
+ cotaAltoLibro.linewidth = 2;
+ var cotaLomo = previewEC.makeDobleArrow(
+ origenEC.x - (lomoLibro / 2),
+ origenEC.y + (altoLibro / 3),
+ origenEC.x + (lomoLibro / 2),
+ origenEC.y + (altoLibro / 3),
+ 10);
+ cotaLomo.linewidth = 2;
+ var cotaContraportada = previewEC.makeDobleArrow(
+ origenEC.x - (lomoLibro / 2 + anchoLibro),
+ origenEC.y - (altoLibro / 3),
+ origenEC.x - (lomoLibro / 2),
+ origenEC.y - (altoLibro / 3),
+ 10);
+ cotaContraportada.linewidth = 2;
+ var cotaPortada = previewEC.makeDobleArrow(
+ origenEC.x + (lomoLibro / 2),
+ origenEC.y - (altoLibro / 3),
+ origenEC.x + (lomoLibro / 2 + anchoLibro),
+ origenEC.y - (altoLibro / 3),
+ 10);
+ cotaPortada.linewidth = 2;
+
+
+ // Textos:
+ // Titulos generales
+ let stylesEC = { size: 22, weight: 'bold', family: 'Public Sans' };
+ previewEC.makeText("Portada", origenEC.x + (lomoLibro + anchoLibro) / 2, origenEC.y, stylesEC);
+ previewEC.makeText("Contraportada", origenEC.x - (lomoLibro + anchoLibro) / 2, origenEC.y, stylesEC);
+ previewEC.makeText("Lomo", origenEC.x, origenEC.y, stylesEC).rotation = -Math.PI / 2;
+ // Sangrados
+ let styleSangrado = { size: 10, family: 'Public Sans', style: 'italic', fill: 'red' };
+ previewEC.makeText(sangradoTexto, origenEC.x, origenEC.y + (altoLibro / 2 + 13), styleSangrado);
+ previewEC.makeText(sangradoTexto, origenEC.x, origenEC.y - (altoLibro / 2 + 13), styleSangrado);
+ previewEC.makeText(sangradoTexto, origenEC.x + (lomoLibro / 2 + anchoLibro + 13), origenEC.y, styleSangrado).rotation = -Math.PI / 2;
+ previewEC.makeText(sangradoTexto, origenEC.x - (lomoLibro / 2 + anchoLibro + 13), origenEC.y, styleSangrado).rotation = -Math.PI / 2;
+ // Cotas
+ previewEC.makeText((this.lomo + anchoCarton).toFixed(1) + " mm", origenEC.x, origenEC.y + (altoLibro / 3) + 15, styleCotas);
+ previewEC.makeText((this.ancho + anchoPliegue).toFixed(1) + " mm", origenEC.x - (lomoLibro / 2 + anchoLibro / 2), origenEC.y - (altoLibro / 3) + 15, styleCotas);
+ previewEC.makeText((this.ancho + anchoPliegue).toFixed(1) + " mm", origenEC.x + (lomoLibro / 2 + anchoLibro / 2), origenEC.y - (altoLibro / 3) + 15, styleCotas);
+ previewEC.makeText((this.alto + altoPliegue).toFixed(1)+ " mm", origenEC.x + (lomoLibro / 2) + 50, origenEC.y, styleCotas).rotation = -Math.PI / 2;
+ previewEC.makeText((this.alto + (2 * sangradoValor) + altoPliegue).toFixed(1) + " mm", origenEC.x + (lomoLibro / 2 + anchoLibro) + 55, origenEC.y, styleCotas).rotation = -Math.PI / 2;
+ previewEC.makeText((2 * this.ancho) + this.lomo + (2 * sangradoValor) + +(2 * anchoPliegue) + anchoCarton + " mm",
+ origenEC.x,
+ origenEC.y + (altoLibro / 2) + 50,
+ styleCotas);
+
+ }
+
+ previewEC.update();
+ }
+}
+
+export default previewFormas;
+/*
+// Global parameters
+var pvObj;
+
+$('#toReview').on("click", function () {
+ previewEsquemaCubierta(true);
+});
+
+$(document).on('shown.bs.modal', function (e) {
+ previewEsquemaCubierta(false);
+})
+
+
+function previewEsquemaCubierta(isThumbnail = false) {
+
+ if ($('#cosidoDiv').length) {
+
+ if ($('#cosidoDiv').hasClass('checked') || $("#fresadoDiv").hasClass('checked')) {
+ //console.log("Cosido/Fresado");
+ if ($("#tapaBlanda").is(":checked")) {
+ portadaTapaBlanda(isThumbnail);
+ } else if ($("#tapaDura").is(":checked")) {
+ portadaTapaDura(isThumbnail);
+ }
+ } else if ($('#espiralDiv').hasClass('checked') || $('#wireoDiv').hasClass('checked')) {
+ //console.log("Espiral/Wireo");
+ if ($("#tapaBlanda").is(":checked")) {
+ portadaEspiral(isThumbnail, false);
+ } else if ($("#tapaDura").is(":checked")) {
+ portadaEspiral(isThumbnail, true);
+ }
+ } else if ($('#grapadoDiv').hasClass('checked')) {
+ portadaGrapado(isThumbnail);
+ }
+ }
+ else {
+ let titulo = $('#tipoLibro').text().toLowerCase();
+ if (titulo.includes("cosido") || titulo.includes("fresado")) {
+ if (titulo.includes("dura"))
+ portadaTapaDura(isThumbnail);
+ else {
+ portadaTapaBlanda(isThumbnail);
+ }
+ }
+ else if (titulo.includes("espiral") || titulo.includes("wire-o")) {
+ if (titulo.includes("dura"))
+ portadaEspiral(isThumbnail, true);
+ else
+ portadaEspiral(isThumbnail, false);
+ }
+ else if (titulo.includes("grapado")) {
+ portadaGrapado(isThumbnail);
+ }
+ }
+
+
+}
+
+
+function portadaTapaBlanda(isThumbnail = false) {
+
+ // Variables locales
+ let altoLibro, anchoLibro, lomoLibro, anchoSolapa, anchoCubierta, altoSangrado, anchoSangrado;
+ let styleCotas = { size: 12, family: 'Public Sans' };
+ let sangradoTexto = "Sangrado 5 mm";
+ let sangradoValor = parseFloat(5); // mm
+ let offsetSolapaValor = parseFloat(0); // mm
+
+ let divIdName = (isThumbnail) ? 'thumbnail_ec_shape' : 'pv_ec_shape';
+
+ // Get the preview Object parameters
+ getObjetoToPreview();
+
+
+ // Definicion de los parametros del Esquema de Cubierta (EC)
+ if (pvObj.anchoSolapa == 0) {
+ if (isThumbnail) {
+ anchoSangrado = 350; // px
+ altoSangrado = (anchoSangrado * 0.647 > 300) ? 300 : anchoSangrado * 0.647; // px
+ } else {
+ anchoSangrado = 800; // px
+ altoSangrado = (anchoSangrado * 0.647 > 650) ? 650 : anchoSangrado * 0.647; // px
+ }
+
+ altoLibro = altoSangrado * 0.97;
+ anchoLibro = anchoSangrado * 0.419;
+ anchoSolapa = 0;
+ lomoLibro = anchoSangrado * 0.133;
+ anchoCubierta = (2 * anchoLibro) + (2 * anchoSolapa) + lomoLibro;
+
+ } else {
+ if (isThumbnail) {
+ anchoSangrado = 350; // px
+ altoSangrado = (anchoSangrado * 0.647 > 300) ? 300 : anchoSangrado * 0.647; // px
+ } else {
+ anchoSangrado = 750; // px
+ altoSangrado = (anchoSangrado * 0.647 > 650) ? 650 : anchoSangrado * 0.647; // px
+ }
+ altoLibro = altoSangrado * 0.95;
+ anchoLibro = anchoSangrado * 0.28;
+ anchoSolapa = anchoSangrado * 0.163;
+ lomoLibro = anchoSangrado * 0.09;
+ anchoCubierta = (2 * anchoLibro) + (2 * anchoSolapa) + lomoLibro;
+ }
+
+ // Clear the canvas element
+ $(`#${divIdName}`).empty();
+ // Get the element for placing the graphical elements
+ var divEC = document.getElementById(divIdName);
+ var previewEC = new Two({ fitted: true }).appendTo(divEC);
+ // Calculate the center of the canvas element
+ var origenEC = new Two.Vector(previewEC.width / 2, previewEC.height / 2);
+
+ var sangrado = previewEC.makeRectangle(
+ origenEC.x,
+ origenEC.y,
+ anchoSangrado,
+ altoSangrado
+ );
+ sangrado.stroke = 'black';
+ sangrado.dashes = [5, 5];
+ sangrado.fill = '#FCEAF1';
+ sangrado.linewidth = 1;
+
+ if (pvObj.anchoSolapa != 0) {
+ var solapas = previewEC.makeRectangle(
+ origenEC.x,
+ origenEC.y,
+ anchoCubierta,
+ altoLibro);
+ solapas.stroke = 'black';
+ solapas.linewidth = 1;
+
+ // Cotas Solapas
+ if (!isThumbnail) {
+ var cotaSolapa2 = previewEC.makeDobleArrow(
+ origenEC.x - anchoCubierta / 2,
+ origenEC.y - (altoLibro / 3),
+ origenEC.x - anchoLibro - lomoLibro / 2,
+ origenEC.y - (altoLibro / 3),
+ 10);
+ cotaSolapa2.linewidth = 2;
+ var cotaSolapa1 = previewEC.makeDobleArrow(
+ origenEC.x + anchoCubierta / 2,
+ origenEC.y - (altoLibro / 3),
+ origenEC.x + anchoLibro + lomoLibro / 2,
+ origenEC.y - (altoLibro / 3),
+ 10);
+ cotaSolapa1.linewidth = 2;
+
+ // Textos Solapas
+ let stylesSolapa = { size: 18, family: 'Public Sans' };
+ previewEC.makeText("Solapa 1", origenEC.x + anchoLibro + (lomoLibro + anchoSolapa) / 2, origenEC.y, stylesSolapa);
+ previewEC.makeText("Solapa 2", origenEC.x - anchoLibro - (lomoLibro + anchoSolapa) / 2, origenEC.y, stylesSolapa);
+ // Textos Cotas Solapas
+ previewEC.makeText(pvObj.anchoSolapa + " mm", origenEC.x - anchoLibro - (lomoLibro + anchoSolapa) / 2, origenEC.y - (altoLibro / 3) + 15, styleCotas);
+ previewEC.makeText(pvObj.anchoSolapa + " mm", origenEC.x + anchoLibro + (lomoLibro + anchoSolapa) / 2, origenEC.y - (altoLibro / 3) + 15, styleCotas);
+ }
+
+ }
+
+ var libro = previewEC.makeRectangle(
+ origenEC.x,
+ origenEC.y,
+ ((2 * anchoLibro) + lomoLibro),
+ altoLibro);
+ libro.stroke = 'black';
+ libro.linewidth = 1;
+
+ var lomo = previewEC.makeRectangle(
+ origenEC.x,
+ origenEC.y,
+ lomoLibro,
+ altoLibro);
+ lomo.stroke = 'black';
+ lomo.fill = '#F4F8F2';
+ lomo.linewidth = 1;
+
+ // Cotas y textos
+ if (!isThumbnail) {
+ // Cotas:
+ var cotaAnchoCubierta = previewEC.makeDobleArrow(
+ origenEC.x - (anchoSangrado / 2),
+ origenEC.y + (altoLibro / 2) + 35,
+ origenEC.x + (anchoSangrado / 2),
+ origenEC.y + (altoLibro / 2) + 35,
+ 10);
+ cotaAnchoCubierta.linewidth = 2;
+ var cotaAltoCubierta = previewEC.makeDobleArrow(
+ origenEC.x + (anchoCubierta / 2) + 35,
+ origenEC.y + (altoSangrado / 2),
+ origenEC.x + (anchoCubierta / 2) + 35,
+ origenEC.y - (altoSangrado / 2),
+ 10);
+ cotaAltoCubierta.linewidth = 2;
+ var cotaAltoLibro = previewEC.makeDobleArrow(
+ origenEC.x + (lomoLibro / 2) + 35,
+ origenEC.y + (altoLibro / 2),
+ origenEC.x + (lomoLibro / 2) + 35,
+ origenEC.y - (altoLibro / 2),
+ 10);
+ cotaAltoLibro.linewidth = 2;
+ var cotaLomo = previewEC.makeDobleArrow(
+ origenEC.x - (lomoLibro / 2),
+ origenEC.y + (altoLibro / 3),
+ origenEC.x + (lomoLibro / 2),
+ origenEC.y + (altoLibro / 3),
+ 10);
+ cotaLomo.linewidth = 2;
+ var cotaContraportada = previewEC.makeDobleArrow(
+ origenEC.x - (lomoLibro / 2 + anchoLibro),
+ origenEC.y - (altoLibro / 3),
+ origenEC.x - (lomoLibro / 2),
+ origenEC.y - (altoLibro / 3),
+ 10);
+ cotaContraportada.linewidth = 2;
+ var cotaPortada = previewEC.makeDobleArrow(
+ origenEC.x + (lomoLibro / 2),
+ origenEC.y - (altoLibro / 3),
+ origenEC.x + (lomoLibro / 2 + anchoLibro),
+ origenEC.y - (altoLibro / 3),
+ 10);
+ cotaPortada.linewidth = 2;
+
+
+ // Textos:
+ // Titulos generales
+ let stylesEC = { size: 22, weight: 'bold', family: 'Public Sans' };
+ previewEC.makeText("Portada", origenEC.x + (lomoLibro + anchoLibro) / 2, origenEC.y, stylesEC);
+ previewEC.makeText("Contraportada", origenEC.x - (lomoLibro + anchoLibro) / 2, origenEC.y, stylesEC);
+ let a = previewEC.makeText("Lomo", origenEC.x, origenEC.y, stylesEC).rotation = -Math.PI / 2;
+ // Sangrados
+ let styleSangrado = { size: 10, family: 'Public Sans', style: 'italic', fill: 'red' };
+ previewEC.makeText(sangradoTexto, origenEC.x, origenEC.y + (altoLibro / 2 + 20), styleSangrado);
+ previewEC.makeText(sangradoTexto, origenEC.x, origenEC.y - (altoLibro / 2 + 20), styleSangrado);
+ previewEC.makeText(sangradoTexto, origenEC.x + (lomoLibro / 2 + anchoLibro + anchoSolapa + 20), origenEC.y, styleSangrado).rotation = -Math.PI / 2;
+ previewEC.makeText(sangradoTexto, origenEC.x - (lomoLibro / 2 + anchoLibro + anchoSolapa + 20), origenEC.y, styleSangrado).rotation = -Math.PI / 2;
+ // Cotas
+ previewEC.makeText(pvObj.lomoLibro + " mm", origenEC.x, origenEC.y + (altoLibro / 3) + 15, styleCotas);
+ previewEC.makeText(pvObj.anchoLibro + offsetSolapaValor + " mm", origenEC.x - (lomoLibro / 2 + anchoLibro / 2), origenEC.y - (altoLibro / 3) + 15, styleCotas);
+ previewEC.makeText(pvObj.anchoLibro + offsetSolapaValor + " mm", origenEC.x + (lomoLibro / 2 + anchoLibro / 2), origenEC.y - (altoLibro / 3) + 15, styleCotas);
+ previewEC.makeText(pvObj.altoLibro + " mm", origenEC.x + (lomoLibro / 2) + 25, origenEC.y, styleCotas).rotation = -Math.PI / 2;
+ previewEC.makeText(pvObj.altoLibro + (2 * sangradoValor) + " mm", origenEC.x + (lomoLibro / 2 + anchoLibro + anchoSolapa) + 50, origenEC.y, styleCotas).rotation = -Math.PI / 2;
+ previewEC.makeText((2 * pvObj.anchoLibro) + (2 * (pvObj.anchoSolapa + offsetSolapaValor)) + pvObj.lomoLibro + (2 * sangradoValor) + " mm",
+ origenEC.x,
+ origenEC.y + (altoLibro / 2) + 50,
+ styleCotas);
+
+ }
+
+ previewEC.update();
+
+}
+
+function portadaEspiral(isThumbnail = false, isTapaDura = false) {
+
+ // Variables locales
+ let altoLibro, anchoLibro, anchoCalle, anchoCubierta, altoSangrado, anchoSangrado, anchoSolapa, offsetCubierta;
+ let styleCotas = { size: 12, family: 'Public Sans' };
+ let sangradoTexto = (isTapaDura) ? "Sangrado 20 mm" : "Sangrado 5 mm";
+ let sangradoValor = (isTapaDura) ? parseFloat(20) : parseFloat(5); // mm
+
+ let divIdName = (isThumbnail) ? 'thumbnail_ec_shape' : 'pv_ec_shape';
+
+ // Get the preview Object parameters
+ getObjetoToPreview();
+
+ // Definicion de los parametros del Esquema de Cubierta (EC)
+ if ((pvObj.anchoSolapa !== 0) && (!isTapaDura)) {
+ if (isThumbnail) {
+ anchoSangrado = 350; // px
+ altoSangrado = (anchoSangrado * 0.647 > 300) ? 300 : anchoSangrado * 0.647; // px
+ } else {
+ anchoSangrado = 750; // px
+ altoSangrado = (anchoSangrado * 0.647 > 650) ? 650 : anchoSangrado * 0.647; // px
+ }
+ altoLibro = altoSangrado * 0.95;
+ anchoLibro = anchoSangrado * 0.28;
+ anchoCalle = anchoSangrado * 0.02;
+ anchoSolapa = anchoSangrado * 0.163;
+ sangrado = anchoSangrado * 0.03;
+ anchoCubierta = 2 * (anchoLibro + anchoSolapa + sangrado) + anchoCalle;
+ offsetCubierta = anchoLibro / 2 + anchoCalle / 2 + anchoSolapa / 2 + sangrado;
+ } else {
+ if (isThumbnail) {
+ anchoSangrado = 350; // px
+ altoSangrado = (anchoSangrado * 0.647 > 300) ? 300 : anchoSangrado * 0.647; // px
+ } else {
+ anchoSangrado = 750; // px
+ altoSangrado = (anchoSangrado * 0.647 > 650) ? 650 : anchoSangrado * 0.647; // px
+ }
+ altoLibro = (isTapaDura) ? altoSangrado * 0.88 : altoSangrado * 0.97;
+ anchoLibro = (isTapaDura) ? anchoSangrado * 0.39 : anchoSangrado * 0.419;
+ anchoCalle = anchoSangrado * 0.02;
+ anchoSolapa = 0;
+ anchoCubierta = (2 * anchoLibro) + (2 * anchoSolapa) + anchoCalle;
+ offsetCubierta = anchoLibro / 2 + anchoCalle / 2 + anchoSolapa + sangradoValor;
+ }
+
+ // Clear the canvas element
+ $(`#${divIdName}`).empty();
+ // Get the element for placing the graphical elements
+ var divEC = document.getElementById(divIdName);
+ var previewEC = new Two({ fitted: true }).appendTo(divEC);
+ // Calculate the center of the canvas element
+ var origenEC = new Two.Vector(previewEC.width / 2, previewEC.height / 2);
+
+ var sangrado = previewEC.makeRectangle(
+ origenEC.x,
+ origenEC.y,
+ anchoSangrado,
+ altoSangrado
+ );
+ sangrado.stroke = 'black';
+ sangrado.dashes = [5, 5];
+ sangrado.fill = '#FCEAF1';
+ sangrado.linewidth = 1;
+
+ if ((pvObj.anchoSolapa != 0) && (!isTapaDura)) {
+ var solapa1 = previewEC.makeRectangle(
+ origenEC.x + (anchoLibro + anchoCalle / 2 + anchoSolapa / 2 + sangradoValor),
+ origenEC.y,
+ anchoSolapa,
+ altoLibro);
+ solapa1.stroke = 'black';
+ solapa1.linewidth = 1;
+
+ var solapa2 = previewEC.makeRectangle(
+ origenEC.x - (anchoLibro + anchoCalle / 2 + anchoSolapa / 2 + sangradoValor),
+ origenEC.y,
+ anchoSolapa,
+ altoLibro);
+ solapa2.stroke = 'black';
+ solapa2.linewidth = 1;
+
+ // Cotas y textos
+ if (!isThumbnail) {
+ // Cotas
+ var cotaSolapa2 = previewEC.makeDobleArrow(
+ origenEC.x - (anchoCalle / 2 + sangradoValor + anchoLibro + anchoSolapa),
+ origenEC.y - (altoLibro / 3),
+ origenEC.x - (anchoLibro + sangradoValor + anchoCalle / 2),
+ origenEC.y - (altoLibro / 3),
+ 10);
+ cotaSolapa2.linewidth = 2;
+ var cotaSolapa1 = previewEC.makeDobleArrow(
+ origenEC.x + (anchoCalle / 2 + sangradoValor + anchoLibro + anchoSolapa),
+ origenEC.y - (altoLibro / 3),
+ origenEC.x + (anchoLibro + sangradoValor + anchoCalle / 2),
+ origenEC.y - (altoLibro / 3),
+ 10);
+ cotaSolapa1.linewidth = 2;
+
+ // Textos Solapas
+ let stylesSolapa = { size: 18, family: 'Public Sans' };
+ previewEC.makeText("Solapa 1", origenEC.x + anchoLibro + (anchoCalle + anchoSolapa) / 2, origenEC.y, stylesSolapa);
+ previewEC.makeText("Solapa 2", origenEC.x - anchoLibro - (anchoCalle + anchoSolapa) / 2, origenEC.y, stylesSolapa);
+ // Textos Cotas Solapas
+ previewEC.makeText(pvObj.anchoSolapa + " mm", origenEC.x - anchoLibro - (anchoCalle + anchoSolapa) / 2, origenEC.y - (altoLibro / 3) + 15, styleCotas);
+ previewEC.makeText(pvObj.anchoSolapa + " mm", origenEC.x + anchoLibro + (anchoCalle + anchoSolapa) / 2, origenEC.y - (altoLibro / 3) + 15, styleCotas);
+ }
+
+ }
+
+ var portada = previewEC.makeRectangle(
+ origenEC.x + (anchoLibro / 2 + anchoCalle / 2 + sangradoValor),
+ origenEC.y,
+ anchoLibro,
+ altoLibro);
+ portada.stroke = 'black';
+ portada.linewidth = 1;
+
+ var contraportada = previewEC.makeRectangle(
+ origenEC.x - (anchoLibro / 2 + anchoCalle / 2 + sangradoValor),
+ origenEC.y,
+ anchoLibro,
+ altoLibro);
+ contraportada.stroke = 'black';
+ contraportada.linewidth = 1;
+
+ var calle = previewEC.makeRectangle(
+ origenEC.x,
+ origenEC.y,
+ anchoCalle,
+ altoSangrado);
+ calle.stroke = 'black';
+ calle.dashes = [2, 5];
+ calle.fill = '#F4F8F2';
+ calle.linewidth = 1;
+
+ // Cotas y textos
+ if (!isThumbnail) {
+ // Cotas:
+ var cotaAnchoCubierta = previewEC.makeDobleArrow(
+ origenEC.x - (anchoSangrado / 2),
+ origenEC.y + (altoLibro / 2) + 35,
+ origenEC.x + (anchoSangrado / 2),
+ origenEC.y + (altoLibro / 2) + 35,
+ 10);
+ cotaAnchoCubierta.linewidth = 2;
+ var cotaAltoCubierta = previewEC.makeDobleArrow(
+ origenEC.x + (anchoSangrado / 2) + 15,
+ origenEC.y + (altoSangrado / 2),
+ origenEC.x + (anchoSangrado / 2) + 15,
+ origenEC.y - (altoSangrado / 2),
+ 10);
+ cotaAltoCubierta.linewidth = 2;
+ var cotaAltoLibro = previewEC.makeDobleArrow(
+ origenEC.x + (anchoCalle / 2) + 35,
+ origenEC.y + (altoLibro / 2),
+ origenEC.x + (anchoCalle / 2) + 35,
+ origenEC.y - (altoLibro / 2),
+ 10);
+ cotaAltoLibro.linewidth = 2;
+ var cotaContraportada = previewEC.makeDobleArrow(
+ origenEC.x - (anchoCalle / 2 + anchoLibro + sangradoValor),
+ origenEC.y - (altoLibro / 3),
+ origenEC.x - ((anchoCalle / 2) + sangradoValor),
+ origenEC.y - (altoLibro / 3),
+ 10);
+ cotaContraportada.linewidth = 2;
+ var cotaPortada = previewEC.makeDobleArrow(
+ origenEC.x + ((anchoCalle / 2) + sangradoValor),
+ origenEC.y - (altoLibro / 3),
+ origenEC.x + (anchoCalle / 2 + anchoLibro + sangradoValor),
+ origenEC.y - (altoLibro / 3),
+ 10);
+ cotaPortada.linewidth = 2;
+
+
+ // Textos:
+ // Titulos generales
+ let stylesEC = { size: 22, weight: 'bold', family: 'Public Sans' };
+ previewEC.makeText("Portada",
+ origenEC.x + anchoLibro / 2 + anchoCalle / 2 + sangradoValor + 15,
+ origenEC.y,
+ stylesEC
+ );
+ previewEC.makeText("Contraportada",
+ origenEC.x - (anchoLibro / 2 + anchoCalle / 2 + sangradoValor),
+ origenEC.y,
+ stylesEC
+ );
+ // Sangrados
+ let styleSangrado = { size: 10, family: 'Public Sans', style: 'italic', fill: 'red' };
+ previewEC.makeText(sangradoTexto, origenEC.x + offsetCubierta, origenEC.y + (altoLibro / 2 + 13), styleSangrado);
+ previewEC.makeText(sangradoTexto, origenEC.x + offsetCubierta, origenEC.y - (altoLibro / 2 + 13), styleSangrado);
+ previewEC.makeText(sangradoTexto, origenEC.x - offsetCubierta, origenEC.y + (altoLibro / 2 + 13), styleSangrado);
+ previewEC.makeText(sangradoTexto, origenEC.x - offsetCubierta, origenEC.y - (altoLibro / 2 + 13), styleSangrado);
+ previewEC.makeText(sangradoTexto, origenEC.x + (anchoSangrado / 2) - 20, origenEC.y, styleSangrado).rotation = -Math.PI / 2;
+ previewEC.makeText(sangradoTexto, origenEC.x - (anchoSangrado / 2) + 20, origenEC.y, styleSangrado).rotation = -Math.PI / 2;
+ // Cotas
+ previewEC.makeText(pvObj.anchoLibro + " mm", origenEC.x - (offsetCubierta - anchoSolapa / 2), origenEC.y - (altoLibro / 3) + 15, styleCotas);
+ previewEC.makeText(pvObj.anchoLibro + " mm", origenEC.x + (offsetCubierta - anchoSolapa / 2), origenEC.y - (altoLibro / 3) + 15, styleCotas);
+ previewEC.makeText(pvObj.altoLibro + " mm", origenEC.x + (anchoCalle / 2) + 50, origenEC.y, styleCotas).rotation = -Math.PI / 2;
+ previewEC.makeText(pvObj.altoLibro + (2 * sangradoValor) + " mm",
+ origenEC.x + (anchoSangrado / 2) + 30,
+ origenEC.y,
+ styleCotas
+ ).rotation = -Math.PI / 2;
+ previewEC.makeText((2 * pvObj.anchoLibro) + pvObj.lomoLibro + (2 * sangradoValor) + " mm",
+ origenEC.x,
+ origenEC.y + (altoLibro / 2) + 50,
+ styleCotas);
+ }
+
+ previewEC.update();
+
+}
+
+function portadaGrapado(isThumbnail = false) {
+
+ // Variables locales
+ let altoLibro, anchoLibro, lomoLibro, anchoSolapa, anchoCubierta, altoSangrado, anchoSangrado;
+ let styleCotas = { size: 12, family: 'Public Sans' };
+ let sangradoTexto = "Sangrado 5 mm";
+ let sangradoValor = parseFloat(5); // mm
+ let offsetSolapaValor = parseFloat(0); // mm
+
+ let divIdName = (isThumbnail) ? 'thumbnail_ec_shape' : 'pv_ec_shape';
+
+ // Get the preview Object parameters
+ getObjetoToPreview();
+
+ // Definicion de los parametros del Esquema de Cubierta (EC)
+ if (pvObj.anchoSolapa == 0) {
+ if (isThumbnail) {
+ anchoSangrado = 350; // px
+ altoSangrado = (anchoSangrado * 0.647 > 300) ? 300 : anchoSangrado * 0.647; // px
+ } else {
+ anchoSangrado = 750; // px
+ altoSangrado = (anchoSangrado * 0.647 > 650) ? 650 : anchoSangrado * 0.647; // px
+ }
+ altoLibro = altoSangrado * 0.97;
+ anchoLibro = anchoSangrado * 0.48;
+ anchoSolapa = 0;
+ lomoLibro = 0; // ESTA ES LA DIFERENCIA PARA GRAPADO
+ anchoCubierta = (2 * anchoLibro) + (2 * anchoSolapa) + lomoLibro;
+
+ } else {
+ if (isThumbnail) {
+ anchoSangrado = 350; // px
+ altoSangrado = (anchoSangrado * 0.647 > 300) ? 300 : anchoSangrado * 0.647; // px
+ } else {
+ anchoSangrado = 750; // px
+ altoSangrado = (anchoSangrado * 0.647 > 650) ? 650 : anchoSangrado * 0.647; // px
+ }
+ altoLibro = altoSangrado * 0.95;
+ anchoLibro = anchoSangrado * 0.3;
+ anchoSolapa = anchoSangrado * 0.18;
+ lomoLibro = 0; // ESTA ES LA DIFERENCIA PARA GRAPADO
+ anchoCubierta = (2 * anchoLibro) + (2 * anchoSolapa) + lomoLibro;
+ }
+
+ // Clear the canvas element
+ $(`#${divIdName}`).empty();
+ // Get the element for placing the graphical elements
+ var divEC = document.getElementById(divIdName);
+ var previewEC = new Two({ fitted: true }).appendTo(divEC);
+ // Calculate the center of the canvas element
+ var origenEC = new Two.Vector(previewEC.width / 2, previewEC.height / 2);
+
+ var sangrado = previewEC.makeRectangle(
+ origenEC.x,
+ origenEC.y,
+ anchoSangrado,
+ altoSangrado
+ );
+ sangrado.stroke = 'black';
+ sangrado.dashes = [5, 5];
+ sangrado.fill = '#FCEAF1';
+ sangrado.linewidth = 1;
+
+ if (pvObj.anchoSolapa != 0) {
+ var solapas = previewEC.makeRectangle(
+ origenEC.x,
+ origenEC.y,
+ anchoCubierta,
+ altoLibro);
+ solapas.stroke = 'black';
+ solapas.linewidth = 1;
+
+ // Cotas y textos
+ if (!isThumbnail) {
+ // Cotas
+ var cotaSolapa2 = previewEC.makeDobleArrow(
+ origenEC.x - anchoCubierta / 2,
+ origenEC.y - (altoLibro / 3),
+ origenEC.x - anchoLibro - lomoLibro / 2,
+ origenEC.y - (altoLibro / 3),
+ 10);
+ cotaSolapa2.linewidth = 2;
+ var cotaSolapa1 = previewEC.makeDobleArrow(
+ origenEC.x + anchoCubierta / 2,
+ origenEC.y - (altoLibro / 3),
+ origenEC.x + anchoLibro + lomoLibro / 2,
+ origenEC.y - (altoLibro / 3),
+ 10);
+ cotaSolapa1.linewidth = 2;
+
+ // Textos Solapas
+ let stylesSolapa = { size: 18, family: 'Public Sans' };
+ previewEC.makeText("Solapa 1", origenEC.x + anchoLibro + (lomoLibro + anchoSolapa) / 2, origenEC.y, stylesSolapa);
+ previewEC.makeText("Solapa 2", origenEC.x - anchoLibro - (lomoLibro + anchoSolapa) / 2, origenEC.y, stylesSolapa);
+ // Textos Cotas Solapas
+ previewEC.makeText(pvObj.anchoSolapa + " mm", origenEC.x - anchoLibro - (lomoLibro + anchoSolapa) / 2, origenEC.y - (altoLibro / 3) + 15, styleCotas);
+ previewEC.makeText(pvObj.anchoSolapa + " mm", origenEC.x + anchoLibro + (lomoLibro + anchoSolapa) / 2, origenEC.y - (altoLibro / 3) + 15, styleCotas);
+ }
+
+ }
+
+ var libro = previewEC.makeRectangle(
+ origenEC.x,
+ origenEC.y,
+ ((2 * anchoLibro) + lomoLibro),
+ altoLibro);
+ libro.stroke = 'black';
+ libro.linewidth = 1;
+
+ var lomo = previewEC.makeRectangle(
+ origenEC.x,
+ origenEC.y,
+ lomoLibro,
+ altoLibro);
+ lomo.stroke = 'black';
+ lomo.fill = '#F4F8F2';
+ lomo.linewidth = 1;
+
+ // Cotas y textos
+ if (!isThumbnail) {
+ // Cotas:
+ var cotaAnchoCubierta = previewEC.makeDobleArrow(
+ origenEC.x - (anchoSangrado / 2),
+ origenEC.y + (altoLibro / 2) + 35,
+ origenEC.x + (anchoSangrado / 2),
+ origenEC.y + (altoLibro / 2) + 35,
+ 10);
+ cotaAnchoCubierta.linewidth = 2;
+ var cotaAltoCubierta = previewEC.makeDobleArrow(
+ origenEC.x + (anchoCubierta / 2) + 35,
+ origenEC.y + (altoSangrado / 2),
+ origenEC.x + (anchoCubierta / 2) + 35,
+ origenEC.y - (altoSangrado / 2),
+ 10);
+ cotaAltoCubierta.linewidth = 2;
+ var cotaAltoLibro = previewEC.makeDobleArrow(
+ origenEC.x + (lomoLibro / 2) + 35,
+ origenEC.y + (altoLibro / 2),
+ origenEC.x + (lomoLibro / 2) + 35,
+ origenEC.y - (altoLibro / 2),
+ 10);
+ cotaAltoLibro.linewidth = 2;
+ var cotaContraportada = previewEC.makeDobleArrow(
+ origenEC.x - (lomoLibro / 2 + anchoLibro),
+ origenEC.y - (altoLibro / 3),
+ origenEC.x - (lomoLibro / 2),
+ origenEC.y - (altoLibro / 3),
+ 10);
+ cotaContraportada.linewidth = 2;
+ var cotaPortada = previewEC.makeDobleArrow(
+ origenEC.x + (lomoLibro / 2),
+ origenEC.y - (altoLibro / 3),
+ origenEC.x + (lomoLibro / 2 + anchoLibro),
+ origenEC.y - (altoLibro / 3),
+ 10);
+ cotaPortada.linewidth = 2;
+
+ // Textos:
+ // Titulos generales
+ let stylesEC = { size: 22, weight: 'bold', family: 'Public Sans' };
+ previewEC.makeText("Portada", origenEC.x + (lomoLibro + anchoLibro) / 2, origenEC.y, stylesEC);
+ previewEC.makeText("Contraportada", origenEC.x - (lomoLibro + anchoLibro) / 2, origenEC.y, stylesEC);
+ // Sangrados
+ let styleSangrado = { size: 10, family: 'Public Sans', style: 'italic', fill: 'red' };
+ previewEC.makeText(sangradoTexto, origenEC.x, origenEC.y + (altoLibro / 2 + 20), styleSangrado);
+ previewEC.makeText(sangradoTexto, origenEC.x, origenEC.y - (altoLibro / 2 + 20), styleSangrado);
+ previewEC.makeText(sangradoTexto, origenEC.x + (lomoLibro / 2 + anchoLibro + anchoSolapa + 20), origenEC.y, styleSangrado).rotation = -Math.PI / 2;
+ previewEC.makeText(sangradoTexto, origenEC.x - (lomoLibro / 2 + anchoLibro + anchoSolapa + 20), origenEC.y, styleSangrado).rotation = -Math.PI / 2;
+ // Cotas
+ previewEC.makeText(pvObj.anchoLibro + offsetSolapaValor + " mm", origenEC.x - (lomoLibro / 2 + anchoLibro / 2), origenEC.y - (altoLibro / 3) + 15, styleCotas);
+ previewEC.makeText(pvObj.anchoLibro + offsetSolapaValor + " mm", origenEC.x + (lomoLibro / 2 + anchoLibro / 2), origenEC.y - (altoLibro / 3) + 15, styleCotas);
+ previewEC.makeText(pvObj.altoLibro + " mm", origenEC.x + (lomoLibro / 2) + 25, origenEC.y, styleCotas).rotation = -Math.PI / 2;
+ previewEC.makeText(pvObj.altoLibro + (2 * sangradoValor) + " mm", origenEC.x + (lomoLibro / 2 + anchoLibro + anchoSolapa) + 50, origenEC.y, styleCotas).rotation = -Math.PI / 2;
+ previewEC.makeText((2 * pvObj.anchoLibro) + (2 * (pvObj.anchoSolapa + offsetSolapaValor)) + pvObj.lomoLibro + (2 * sangradoValor) + " mm",
+ origenEC.x,
+ origenEC.y + (altoLibro / 2) + 50,
+ styleCotas);
+ }
+
+ previewEC.update();
+
+}
+
+
+function getObjetoToPreview() {
+
+ if ($('#cosidoDiv').length) {
+ pvObj = {
+ lomoLibro: $('#lomo_cubierta').val() === '' ? parseFloat('0.0') : parseFloat($('#lomo_cubierta').val()),
+ anchoSolapa: $('#solapasCubierta').is(':checked') ? parseFloat($('#anchoSolapasCubierta').val()) : parseFloat(0),
+ altoLibro: getDimensionLibro().alto,
+ anchoLibro: getDimensionLibro().ancho
+ };
+ } else {
+ let tamanio = $('#resumenTamanio').text().split(' ')[1].split('x');
+ let solapas = parseInt($('#resumenSolapasCubierta').length ? $('#resumenSolapasCubierta').text().split(' ')[1].replace("mm", '') : 0);
+ pvObj = {
+ lomoLibro: $('#lomo_cubierta').val() === '' ? parseFloat('0.0') : parseFloat($('#lomo_cubierta').val()),
+ anchoSolapa: solapas,
+ altoLibro: parseInt(tamanio[1]),
+ anchoLibro: parseInt(tamanio[0])
+ };
+ }
+ //console.log($('#lomo_cubierta').val());
+}
+*/
\ No newline at end of file
diff --git a/xdebug.log b/xdebug.log
index 6421dd12..abb75096 100644
--- a/xdebug.log
+++ b/xdebug.log
@@ -61602,3 +61602,35393 @@ Stack trace:
[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
[44] Log closed at 2024-10-19 18:26:31.370386
+[22] Log opened at 2024-10-20 10:51:00.409745
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-10-20 10:51:01.455153
+
+[22] Log opened at 2024-10-20 10:51:01.513877
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-10-20 10:51:02.591286
+
+[22] Log opened at 2024-10-20 10:51:02.659493
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-10-20 10:51:03.325222
+
+[23] Log opened at 2024-10-20 10:51:03.494286
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-10-20 10:51:04.422581
+
+[23] Log opened at 2024-10-20 10:51:04.598412
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-10-20 10:51:06.013253
+
+[23] Log opened at 2024-10-20 10:51:06.024368
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-10-20 10:51:07.164852
+
+[23] Log opened at 2024-10-20 10:51:07.214127
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-10-20 10:51:07.872643
+
+[23] Log opened at 2024-10-20 10:51:07.950640
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[25] Log opened at 2024-10-20 10:51:07.966518
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-10-20 10:51:08.890262
+
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-10-20 10:51:09.507466
+
+[23] Log opened at 2024-10-20 10:51:13.040938
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-10-20 10:51:14.339032
+
+[23] Log opened at 2024-10-20 10:51:14.399525
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-10-20 10:51:15.050775
+
+[31] Log opened at 2024-10-20 10:51:15.185980
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] Log opened at 2024-10-20 10:51:15.186867
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] Log opened at 2024-10-20 10:51:15.272743
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-10-20 10:51:16.153104
+
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-10-20 10:51:16.772333
+
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-10-20 10:51:17.228977
+
+[31] Log opened at 2024-10-20 10:51:19.427978
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-10-20 10:51:22.208017
+
+[31] Log opened at 2024-10-20 10:51:22.277422
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] Log opened at 2024-10-20 10:51:22.286945
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-10-20 10:51:22.937530
+
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-10-20 10:51:23.469288
+
+[31] Log opened at 2024-10-20 10:51:23.494971
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] Log opened at 2024-10-20 10:51:23.496456
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] Log opened at 2024-10-20 10:51:23.500955
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-10-20 10:51:24.534418
+
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-10-20 10:51:25.102061
+
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-20 10:51:25.456548
+
+[31] Log opened at 2024-10-20 10:51:25.497378
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-10-20 10:51:26.677310
+
+[33] Log opened at 2024-10-20 10:51:32.897325
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-10-20 10:51:33.885802
+
+[33] Log opened at 2024-10-20 10:51:33.893580
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-10-20 10:51:34.851589
+
+[23] Log opened at 2024-10-20 10:51:43.073548
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-10-20 10:51:45.736105
+
+[23] Log opened at 2024-10-20 10:51:45.930183
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] Log opened at 2024-10-20 10:51:45.933280
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-10-20 10:51:46.584855
+
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-10-20 10:51:47.061035
+
+[29] Log opened at 2024-10-20 10:51:47.106280
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] Log opened at 2024-10-20 10:51:47.226261
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] Log opened at 2024-10-20 10:51:47.232097
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-10-20 10:51:48.269382
+
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-10-20 10:51:48.864288
+
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-20 10:51:49.204762
+
+[32] Log opened at 2024-10-20 10:51:49.253357
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-10-20 10:51:50.505698
+
+[27] Log opened at 2024-10-20 10:52:53.880150
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-10-20 10:52:59.417045
+
+[27] Log opened at 2024-10-20 10:52:59.593356
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] Log opened at 2024-10-20 10:52:59.612329
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-10-20 10:53:00.247013
+
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-10-20 10:53:01.478484
+
+[31] Log opened at 2024-10-20 10:53:01.641045
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] Log opened at 2024-10-20 10:53:01.676445
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] Log opened at 2024-10-20 10:53:01.686671
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-10-20 10:53:02.715062
+
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-10-20 10:53:03.713401
+
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-10-20 10:53:04.050890
+
+[33] Log opened at 2024-10-20 10:53:04.098999
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-10-20 10:53:06.380380
+
+[34] Log opened at 2024-10-20 10:53:10.397920
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-20 10:53:13.070312
+
+[34] Log opened at 2024-10-20 10:53:13.353920
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] Log opened at 2024-10-20 10:53:13.423258
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-20 10:53:14.009461
+
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-10-20 10:53:14.627663
+
+[26] Log opened at 2024-10-20 10:53:14.688767
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] Log opened at 2024-10-20 10:53:14.772978
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] Log opened at 2024-10-20 10:53:14.777122
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-10-20 10:53:15.916669
+
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-20 10:53:16.535418
+
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-10-20 10:53:16.894343
+
+[23] Log opened at 2024-10-20 10:53:16.939706
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-10-20 10:53:18.179582
+
+[27] Log opened at 2024-10-20 10:53:24.266871
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-10-20 10:53:27.942074
+
+[27] Log opened at 2024-10-20 10:53:28.240955
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] Log opened at 2024-10-20 10:53:28.339900
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-10-20 10:53:28.907573
+
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-10-20 10:53:29.622064
+
+[33] Log opened at 2024-10-20 10:53:29.688528
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] Log opened at 2024-10-20 10:53:29.788565
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] Log opened at 2024-10-20 10:53:29.811298
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-10-20 10:53:30.915142
+
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-10-20 10:53:31.526805
+
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-10-20 10:53:31.877691
+
+[34] Log opened at 2024-10-20 10:53:31.962622
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-20 10:53:33.305292
+
+[33] Log opened at 2024-10-20 10:53:36.467164
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-10-20 10:53:39.352531
+
+[33] Log opened at 2024-10-20 10:53:39.597858
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] Log opened at 2024-10-20 10:53:39.601227
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-10-20 10:53:40.295011
+
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-20 10:53:40.946599
+
+[33] Log opened at 2024-10-20 10:53:41.013277
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] Log opened at 2024-10-20 10:53:41.143039
+[26] Log opened at 2024-10-20 10:53:41.143037
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-20 10:53:42.350533
+
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-10-20 10:53:42.934064
+
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-10-20 10:53:43.282087
+
+[33] Log opened at 2024-10-20 10:53:43.338498
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-10-20 10:53:44.599067
+
+[35] Log opened at 2024-10-20 10:53:54.954606
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-10-20 10:53:57.931552
+
+[22] Log opened at 2024-10-20 10:53:58.116068
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] Log opened at 2024-10-20 10:53:58.124115
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-10-20 10:53:58.829715
+
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-10-20 10:53:59.422187
+
+[29] Log opened at 2024-10-20 10:53:59.595659
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] Log opened at 2024-10-20 10:53:59.664050
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] Log opened at 2024-10-20 10:53:59.664073
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-10-20 10:54:00.927915
+
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-10-20 10:54:01.645969
+
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-20 10:54:01.993409
+
+[22] Log opened at 2024-10-20 10:54:02.044238
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-10-20 10:54:03.339051
+
+[23] Log opened at 2024-10-20 10:54:23.181827
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-10-20 10:54:26.444603
+
+[23] Log opened at 2024-10-20 10:54:26.693341
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] Log opened at 2024-10-20 10:54:26.775599
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-10-20 10:54:27.362558
+
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-10-20 10:54:28.977599
+
+[35] Log opened at 2024-10-20 10:54:29.023326
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] Log opened at 2024-10-20 10:54:29.099326
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] Log opened at 2024-10-20 10:54:29.120150
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] Log closed at 2024-10-20 10:54:30.239652
+
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-20 10:54:30.640884
+
+[32] Log opened at 2024-10-20 10:54:30.699611
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-10-20 10:54:33.885966
+
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-10-20 10:54:35.373011
+
+[32] Log opened at 2024-10-20 10:54:39.656810
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-10-20 10:54:43.549080
+
+[32] Log opened at 2024-10-20 10:54:43.717947
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] Log opened at 2024-10-20 10:54:43.721424
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-10-20 10:54:44.383532
+
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-10-20 10:54:45.051451
+
+[32] Log opened at 2024-10-20 10:54:45.102321
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] Log opened at 2024-10-20 10:54:45.168821
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] Log opened at 2024-10-20 10:54:45.206927
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-10-20 10:54:46.279262
+
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-10-20 10:54:46.897446
+
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-20 10:54:47.236732
+
+[32] Log opened at 2024-10-20 10:54:47.291854
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-10-20 10:54:48.541728
+
+[36] Log opened at 2024-10-20 10:57:20.073265
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-10-20 10:57:22.758569
+
+[36] Log opened at 2024-10-20 10:57:22.955860
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] Log opened at 2024-10-20 10:57:22.964028
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-10-20 10:57:23.605961
+
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-10-20 10:57:24.093196
+
+[33] Log opened at 2024-10-20 10:57:24.143603
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] Log opened at 2024-10-20 10:57:24.245381
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] Log opened at 2024-10-20 10:57:24.262395
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-20 10:57:25.299564
+
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-10-20 10:57:25.897363
+
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-10-20 10:57:26.246546
+
+[26] Log opened at 2024-10-20 10:57:26.292549
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-20 10:57:27.556658
+
+[29] Log opened at 2024-10-20 10:57:44.515216
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-10-20 10:57:47.325623
+
+[29] Log opened at 2024-10-20 10:57:47.579361
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] Log opened at 2024-10-20 10:57:47.651309
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-10-20 10:57:48.248087
+
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-20 10:57:48.930530
+
+[31] Log opened at 2024-10-20 10:57:48.982630
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] Log opened at 2024-10-20 10:57:49.074757
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] Log opened at 2024-10-20 10:57:49.078970
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-10-20 10:57:50.176313
+
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-10-20 10:57:50.812889
+
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-20 10:57:51.184803
+
+[32] Log opened at 2024-10-20 10:57:51.234457
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-10-20 10:57:52.493214
+
+[26] Log opened at 2024-10-20 10:58:33.746641
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-20 10:58:36.392651
+
+[26] Log opened at 2024-10-20 10:58:36.628354
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] Log opened at 2024-10-20 10:58:36.699740
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-20 10:58:37.295697
+
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-10-20 10:58:37.898670
+
+[34] Log opened at 2024-10-20 10:58:38.025155
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] Log opened at 2024-10-20 10:58:38.149575
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] Log opened at 2024-10-20 10:58:38.149912
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-10-20 10:58:39.201307
+
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-20 10:58:39.821139
+
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-10-20 10:58:40.150803
+
+[29] Log opened at 2024-10-20 10:58:40.206970
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-10-20 10:58:41.504003
+
+[32] Log opened at 2024-10-20 10:59:37.787629
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-10-20 10:59:40.455977
+
+[32] Log opened at 2024-10-20 10:59:40.733417
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] Log opened at 2024-10-20 10:59:40.809270
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-10-20 10:59:41.398049
+
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-10-20 10:59:42.105074
+
+[35] Log opened at 2024-10-20 10:59:42.163220
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] Log opened at 2024-10-20 10:59:42.257805
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[39] Log opened at 2024-10-20 10:59:42.257805
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-10-20 10:59:43.465896
+
+[34] Log opened at 2024-10-20 10:59:43.514898
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-10-20 10:59:44.068115
+
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-10-20 10:59:44.411172
+
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-20 10:59:46.303288
+
+[34] Log opened at 2024-10-20 10:59:46.493414
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] Log opened at 2024-10-20 10:59:46.556492
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-20 10:59:47.154389
+
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-20 10:59:47.718619
+
+[40] Log opened at 2024-10-20 10:59:47.797760
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] Log opened at 2024-10-20 10:59:47.882117
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] Log opened at 2024-10-20 10:59:47.924558
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-10-20 10:59:48.943863
+
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-10-20 10:59:49.533029
+
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-10-20 10:59:49.872297
+
+[29] Log opened at 2024-10-20 10:59:49.923695
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-10-20 10:59:51.110170
+
+[35] Log opened at 2024-10-20 11:02:47.060411
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-10-20 11:02:49.685836
+
+[35] Log opened at 2024-10-20 11:02:49.922281
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] Log opened at 2024-10-20 11:02:49.991014
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-10-20 11:02:50.588360
+
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-20 11:02:51.195287
+
+[39] Log opened at 2024-10-20 11:02:51.290103
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] Log opened at 2024-10-20 11:02:51.439598
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[40] Log opened at 2024-10-20 11:02:51.439600
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-10-20 11:02:52.645973
+
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-10-20 11:02:53.235252
+
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-10-20 11:02:53.576351
+
+[39] Log opened at 2024-10-20 11:02:53.627578
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-10-20 11:02:54.918500
+
+[22] Log opened at 2024-10-20 11:03:00.574861
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-10-20 11:03:03.301427
+
+[22] Log opened at 2024-10-20 11:03:03.484302
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] Log opened at 2024-10-20 11:03:03.486925
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-10-20 11:03:04.150234
+
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-10-20 11:03:04.733039
+
+[29] Log opened at 2024-10-20 11:03:04.839002
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] Log opened at 2024-10-20 11:03:04.972144
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] Log opened at 2024-10-20 11:03:04.981464
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-10-20 11:03:05.997263
+
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-10-20 11:03:06.663540
+
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-10-20 11:03:07.010678
+
+[32] Log opened at 2024-10-20 11:03:07.061297
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-10-20 11:03:08.270816
+
+[34] Log opened at 2024-10-20 11:03:11.145989
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-20 11:03:13.916014
+
+[34] Log opened at 2024-10-20 11:03:14.143768
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] Log opened at 2024-10-20 11:03:14.206742
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-20 11:03:14.804934
+
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-10-20 11:03:15.401708
+
+[37] Log opened at 2024-10-20 11:03:15.459108
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] Log opened at 2024-10-20 11:03:15.579411
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] Log opened at 2024-10-20 11:03:15.585810
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-10-20 11:03:16.697846
+
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-20 11:03:17.308199
+
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-10-20 11:03:17.649709
+
+[37] Log opened at 2024-10-20 11:03:17.716343
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-20 11:03:18.983750
+
+[36] Log opened at 2024-10-20 11:04:10.190732
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-10-20 11:04:12.944087
+
+[36] Log opened at 2024-10-20 11:04:13.205276
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] Log opened at 2024-10-20 11:04:13.281304
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-10-20 11:04:13.864615
+
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-10-20 11:04:14.469696
+
+[40] Log opened at 2024-10-20 11:04:14.535110
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] Log opened at 2024-10-20 11:04:14.633523
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] Log opened at 2024-10-20 11:04:14.646102
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-10-20 11:04:15.699728
+
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-10-20 11:04:16.330496
+
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-10-20 11:04:16.676687
+
+[34] Log opened at 2024-10-20 11:04:16.720360
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-20 11:04:17.999940
+
+[22] Log opened at 2024-10-20 11:05:14.170655
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-10-20 11:05:16.938634
+
+[22] Log opened at 2024-10-20 11:05:17.196413
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] Log opened at 2024-10-20 11:05:17.269548
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-10-20 11:05:17.865118
+
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-10-20 11:05:18.483522
+
+[32] Log opened at 2024-10-20 11:05:18.537125
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] Log opened at 2024-10-20 11:05:18.636414
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] Log opened at 2024-10-20 11:05:18.637257
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-20 11:05:19.751338
+
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-10-20 11:05:20.423276
+
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-10-20 11:05:20.768696
+
+[40] Log opened at 2024-10-20 11:05:20.809091
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-10-20 11:05:22.101039
+
+[34] Log opened at 2024-10-20 11:06:35.389682
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 588
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 946
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[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] [Step Debug] ->
+
+[34] Log closed at 2024-10-20 11:06:37.526630
+
+[34] Log opened at 2024-10-20 11:06:37.681161
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 588
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 946
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[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] ->
+
+[41] Log opened at 2024-10-20 11:06:37.703680
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- run -i 6
+[34] [Step Debug] <- run -i 12
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-10-20 11:06:37.863819
+
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 588
+[41] [Step Debug] ->
+
+[41] Log closed at 2024-10-20 11:06:38.406931
+
+[41] Log opened at 2024-10-20 11:06:38.450105
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 588
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 946
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[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
+[37] Log opened at 2024-10-20 11:06:38.598931
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[43] Log opened at 2024-10-20 11:06:38.599543
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ->
+
+[43] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[37] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[43] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[43] [Step Debug] ->
+
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[37] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[43] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[37] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[43] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[37] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[43] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 588
+[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 588
+[43] [Step Debug] ->
+
+[37] [Step Debug] ->
+
+[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 946
+[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 946
+[37] [Step Debug] ->
+
+[43] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 946
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[37] [Step Debug] ->
+
+[43] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[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] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 946
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[43] [Step Debug] ->
+
+[37] [Step Debug] <- run -i 14
+[43] [Step Debug] <- run -i 14
+[37] [Step Debug] ->
+
+[37] Log closed at 2024-10-20 11:06:39.193989
+
+[41] [Step Debug] ->
+
+[41] Log closed at 2024-10-20 11:06:39.649536
+
+[43] [Step Debug] ->
+
+[43] Log closed at 2024-10-20 11:06:39.801519
+
+[37] Log opened at 2024-10-20 11:06:39.850416
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 588
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 946
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- run -i 12
+[37] [Step Debug] ->
+
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- stack_get -i 13
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 14 -n "$datos_entrada" -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 15 -n "$data" -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 16 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 17 -n "$presupuesto->titulo" -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 18 -n "$presupuesto->autor" -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_names -i 19 -d 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_get -i 20 -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 21 -n "$presupuesto->autor" -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 22 -n "$presupuesto" -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 23 -n "$presupuesto" -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 24 -n "$presupuesto" -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 25 -n "$presupuesto" -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 26 -n "$presupuesto->paginas_cuadernillo" -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 27 -n "$presupuesto->iva_reducido" -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 28 -n "$presupuesto->paginas_cuadernillo" -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 29 -n "$presupuesto->paginas_color" -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 30 -n "$presupuesto->paginas_color" -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 31 -n "$presupuesto->paginas_color" -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 32 -n "$presupuesto->paginas_color" -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 33 -n "$presupuesto->paginas_color" -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 34 -n "$presupuesto->paginas_color" -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 35 -n "$presupuesto->paginas_color" -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 36 -n "$presupuesto" -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 37 -n "$presupuesto->attributes" -p 0 -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 38 -n "$presupuesto->paginas_color" -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 39 -n "$presupuesto->paginas_color" -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 40 -n "$presupuesto->paginas_cuadernillo" -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 41 -n "$presupuesto->paginas_cuadernillo" -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 42 -n "$presupuesto->paginas_color" -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- stop -i 43
+[37] [Step Debug] ->
+
+[37] [Step Debug] ->
+
+[37] Log closed at 2024-10-20 11:07:05.250107
+
+[42] Log opened at 2024-10-20 11:07:09.001735
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-20 11:07:11.829610
+
+[42] Log opened at 2024-10-20 11:07:12.071188
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] Log opened at 2024-10-20 11:07:12.128581
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-20 11:07:12.728218
+
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-10-20 11:07:13.300108
+
+[40] Log opened at 2024-10-20 11:07:13.374014
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] Log opened at 2024-10-20 11:07:13.502311
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] Log opened at 2024-10-20 11:07:13.502709
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-10-20 11:07:14.614342
+
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-10-20 11:07:15.226132
+
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-20 11:07:15.562652
+
+[22] Log opened at 2024-10-20 11:07:15.604288
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-10-20 11:07:16.837162
+
+[37] Log opened at 2024-10-20 11:09:07.913581
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 587
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 960
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- run -i 12
+[37] [Step Debug] ->
+
+[37] [Step Debug] ->
+
+[37] Log closed at 2024-10-20 11:09:10.192426
+
+[37] Log opened at 2024-10-20 11:09:10.398234
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 587
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 960
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[37] [Step Debug] ->
+
+[44] Log opened at 2024-10-20 11:09:10.468428
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[44] [Step Debug] ->
+
+[37] [Step Debug] <- run -i 12
+[44] [Step Debug] <- run -i 6
+[37] [Step Debug] ->
+
+[37] Log closed at 2024-10-20 11:09:10.623515
+
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 587
+[44] [Step Debug] ->
+
+[44] Log closed at 2024-10-20 11:09:11.289700
+
+[38] Log opened at 2024-10-20 11:09:11.334406
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 587
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 960
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[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] ->
+
+[40] Log opened at 2024-10-20 11:09:11.443605
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] <- run -i 12
+[40] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] ->
+
+[44] Log opened at 2024-10-20 11:09:11.446471
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[40] [Step Debug] ->
+
+[44] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ->
+
+[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[40] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[44] [Step Debug] ->
+
+[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[40] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[44] [Step Debug] ->
+
+[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[40] [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] <- feature_set -i 5 -n extended_properties -v 1
+[40] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 587
+[44] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 587
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 960
+[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 960
+[44] [Step Debug] ->
+
+[40] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[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] ->
+
+[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 960
+[44] [Step Debug] ->
+
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[40] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[44] [Step Debug] ->
+
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 960
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- run -i 14
+[44] [Step Debug] <- run -i 14
+[40] [Step Debug] ->
+
+[40] Log closed at 2024-10-20 11:09:12.074857
+
+[38] [Step Debug] ->
+
+[38] Log closed at 2024-10-20 11:09:12.523964
+
+[44] [Step Debug] ->
+
+[44] Log closed at 2024-10-20 11:09:12.668772
+
+[42] Log opened at 2024-10-20 11:09:12.721644
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 587
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 960
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- run -i 12
+[42] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- stack_get -i 13
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 14 -n "$datos_entrada" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 15 -n "$data" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 16 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- context_names -i 17 -d 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- context_get -i 18 -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 19 -n "$presupuesto->comp_pos_paginas_color" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 20 -n "$presupuesto->papel_interior_diferente" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 21 -n "$presupuesto->comp_pos_paginas_color" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 22 -n "$presupuesto" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 23 -n "$presupuesto->attributes" -p 0 -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 24 -n "$presupuesto" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 25 -n "$presupuesto->papel_interior_diferente" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 26 -n "$presupuesto->comp_pos_paginas_color" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 27 -n "$modelPapelFormato" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 28 -n "$presupuesto" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 29 -n "$presupuesto" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 30 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 31 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 32 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 33 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 34 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 35 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 36 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 37 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 38 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 39 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 40 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 41 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 42 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 43 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 44 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 45 -n "$presupuesto" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 46 -n "$presupuesto->tirada" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 47 -n "$presupuesto" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 48 -n "$presupuesto" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 49 -n "$presupuesto->paginas_cuadernillo" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 50 -n "$presupuesto->paginas_cuadernillo" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 51 -n "$presupuesto->paginas_cuadernillo" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 52 -n "$presupuesto->paginas_cuadernillo" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 53 -n "$presupuesto" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 54 -n "$presupuesto" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 55 -n "$presupuesto" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 56 -n "$presupuesto" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 57 -n "$presupuesto->attributes" -p 0 -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 58 -n "$presupuesto" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 59 -n "$presupuesto" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 60 -n "$presupuesto->referencia_cliente" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 61 -n "$presupuesto->referencia_cliente" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 62 -n "$presupuesto->referencia_cliente" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 63 -n "$presupuesto->referencia_cliente" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 64 -n "$presupuesto->paginas_cuadernillo" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- run -i 65
+[42] [Step Debug] ->
+
+[42] Log closed at 2024-10-20 11:10:42.538660
+
+[41] Log opened at 2024-10-20 11:11:42.841963
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-10-20 11:11:45.505812
+
+[41] Log opened at 2024-10-20 11:11:45.700497
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[43] Log opened at 2024-10-20 11:11:45.763295
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-10-20 11:11:46.354134
+
+[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-10-20 11:11:46.988611
+
+[32] Log opened at 2024-10-20 11:11:47.039455
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] Log opened at 2024-10-20 11:11:47.132010
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] Log opened at 2024-10-20 11:11:47.135210
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-20 11:11:48.201235
+
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-10-20 11:11:48.832542
+
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-10-20 11:11:49.170913
+
+[43] Log opened at 2024-10-20 11:11:49.213613
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-10-20 11:11:50.423056
+
+[42] Log opened at 2024-10-20 11:12:22.815125
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-20 11:12:25.466286
+
+[22] Log opened at 2024-10-20 11:12:25.689535
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] Log opened at 2024-10-20 11:12:25.748223
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-10-20 11:12:26.348228
+
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-10-20 11:12:26.960817
+
+[37] Log opened at 2024-10-20 11:12:27.088890
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] Log opened at 2024-10-20 11:12:27.122589
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] Log opened at 2024-10-20 11:12:27.123958
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-20 11:12:28.162659
+
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-10-20 11:12:28.488433
+
+[40] Log opened at 2024-10-20 11:12:28.532640
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-20 11:12:29.131001
+
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-10-20 11:12:29.705564
+
+[41] Log opened at 2024-10-20 11:21:16.462272
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-10-20 11:21:19.073546
+
+[41] Log opened at 2024-10-20 11:21:19.323034
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] Log opened at 2024-10-20 11:21:19.379310
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-10-20 11:21:19.981158
+
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-20 11:21:20.562386
+
+[45] Log opened at 2024-10-20 11:21:20.648701
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] Log opened at 2024-10-20 11:21:20.767466
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] Log opened at 2024-10-20 11:21:20.779768
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-20 11:21:21.816110
+
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-10-20 11:21:22.447808
+
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-10-20 11:21:22.794241
+
+[37] Log opened at 2024-10-20 11:21:22.843810
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-20 11:21:24.128514
+
+[44] Log opened at 2024-10-20 11:21:56.757358
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 599
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[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] [Step Debug] ->
+
+[44] Log closed at 2024-10-20 11:21:58.998501
+
+[44] Log opened at 2024-10-20 11:21:59.119173
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[44] [Step Debug] ->
+
+[47] Log opened at 2024-10-20 11:21:59.123745
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[44] [Step Debug] ->
+
+[47] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[44] [Step Debug] ->
+
+[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[47] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[44] [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] <- feature_set -i 5 -n extended_properties -v 1
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 599
+[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 599
+[44] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964
+[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964
+[44] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[47] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[44] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[44] [Step Debug] ->
+
+[47] [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"
+[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[47] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964
+[44] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[44] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[47] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[47] [Step Debug] ->
+
+[44] [Step Debug] <- run -i 14
+[47] [Step Debug] <- run -i 14
+[44] [Step Debug] ->
+
+[44] Log closed at 2024-10-20 11:21:59.328356
+
+[47] [Step Debug] ->
+
+[47] Log closed at 2024-10-20 11:21:59.879985
+
+[47] Log opened at 2024-10-20 11:21:59.932919
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[47] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 599
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- run -i 12
+[42] Log opened at 2024-10-20 11:22:00.057840
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] Log opened at 2024-10-20 11:22:00.058524
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ->
+
+[48] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[48] [Step Debug] ->
+
+[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
+[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[48] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[48] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[48] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[48] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 599
+[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 599
+[48] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964
+[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964
+[48] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[48] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[42] [Step Debug] ->
+
+[48] [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"
+[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[48] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964
+[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[42] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[48] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- run -i 14
+[42] [Step Debug] <- run -i 14
+[42] [Step Debug] ->
+
+[42] Log closed at 2024-10-20 11:22:00.696108
+
+[47] [Step Debug] ->
+
+[47] Log closed at 2024-10-20 11:22:01.121472
+
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-10-20 11:22:01.253311
+
+[42] Log opened at 2024-10-20 11:22:01.299173
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 599
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- run -i 12
+[42] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- stack_get -i 13
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 14 -n "$datos_entrada" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 15 -n "$data" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 16 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- context_names -i 17 -d 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- context_get -i 18 -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- step_into -i 20
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- stack_get -i 21
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 22 -n "$datos_entrada" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 23 -n "$data" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 24 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- context_names -i 25 -d 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- context_get -i 26 -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 27 -n "$tipo_impresion_id" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 28 -n "$paisModel" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- run -i 29
+[42] [Step Debug] ->
+
+[42] Log closed at 2024-10-20 11:22:10.019768
+
+[42] Log opened at 2024-10-20 11:22:12.767486
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 599
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- run -i 12
+[42] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[42] Log closed at 2024-10-20 11:22:15.057173
+
+[42] Log opened at 2024-10-20 11:22:15.232180
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[42] [Step Debug] ->
+
+[46] Log opened at 2024-10-20 11:22:15.237696
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[42] [Step Debug] ->
+
+[46] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[46] [Step Debug] ->
+
+[42] [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] <- feature_set -i 5 -n extended_properties -v 1
+[46] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 599
+[42] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 599
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964
+[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964
+[46] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[46] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[46] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[42] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[42] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- run -i 12
+[42] [Step Debug] <- run -i 12
+[42] [Step Debug] ->
+
+[42] Log closed at 2024-10-20 11:22:15.383707
+
+[46] [Step Debug] ->
+
+[46] Log closed at 2024-10-20 11:22:15.930528
+
+[42] Log opened at 2024-10-20 11:22:15.970177
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 599
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[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
+[45] Log opened at 2024-10-20 11:22:16.116525
+[46] Log opened at 2024-10-20 11:22:16.116520
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[45] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[46] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[45] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[46] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[45] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[45] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[46] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[46] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[46] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 599
+[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 599
+[46] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964
+[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964
+[45] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[46] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[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] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[45] [Step Debug] ->
+
+[46] [Step Debug] <- run -i 14
+[45] [Step Debug] <- run -i 14
+[46] [Step Debug] ->
+
+[46] Log closed at 2024-10-20 11:22:16.730355
+
+[42] [Step Debug] ->
+
+[42] Log closed at 2024-10-20 11:22:17.183399
+
+[45] [Step Debug] ->
+
+[45] Log closed at 2024-10-20 11:22:17.338494
+
+[42] Log opened at 2024-10-20 11:22:17.380072
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 599
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- run -i 12
+[42] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- stack_get -i 13
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 14 -n "$datos_entrada" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 15 -n "$data" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 16 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- context_names -i 17 -d 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- context_get -i 18 -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 19 -n "$presupuestoEntity" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 20 -n "$presupuestoEntity" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 21 -n "$presupuestoEntity" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 22 -n "$presupuestoEntity" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 23 -n "$presupuestoEntity" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 24 -n "$presupuestoEntity" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 25 -n "$presupuestoEntity" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 26 -n "$presupuestoEntity" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 27 -n "$presupuestoEntity" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 28 -n "$presupuestoEntity" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 29 -n "$presupuesto" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 30 -n "$presupuesto->cliente_id" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 31 -n "$presupuesto" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- property_get -i 32 -n "$presupuesto" -d 0 -c 0
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_remove -i 33 -d 420038
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- run -i 34
+[42] [Step Debug] ->
+
+[42] Log closed at 2024-10-20 11:22:27.029131
+
+[41] Log opened at 2024-10-20 11:22:50.535774
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-10-20 11:22:53.217704
+
+[41] Log opened at 2024-10-20 11:22:53.380671
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] Log opened at 2024-10-20 11:22:53.388113
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-10-20 11:22:54.028668
+
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-10-20 11:22:54.518532
+
+[40] Log opened at 2024-10-20 11:22:54.564290
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] Log opened at 2024-10-20 11:22:54.724371
+[47] Log opened at 2024-10-20 11:22:54.724371
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[47] Log closed at 2024-10-20 11:22:55.755863
+
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-10-20 11:22:56.405732
+
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] Log closed at 2024-10-20 11:22:56.747842
+
+[47] Log opened at 2024-10-20 11:22:56.792266
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[47] Log closed at 2024-10-20 11:22:58.137658
+
+[46] Log opened at 2024-10-20 11:23:41.054759
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-20 11:23:43.695683
+
+[46] Log opened at 2024-10-20 11:23:43.933796
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] Log opened at 2024-10-20 11:23:43.997499
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-20 11:23:44.599834
+
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-20 11:23:45.170154
+
+[45] Log opened at 2024-10-20 11:23:45.220964
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] Log opened at 2024-10-20 11:23:45.323166
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] Log opened at 2024-10-20 11:23:45.323449
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-20 11:23:46.372819
+
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-10-20 11:23:46.975503
+
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-10-20 11:23:47.327979
+
+[22] Log opened at 2024-10-20 11:23:47.376496
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-10-20 11:23:48.694625
+
+[47] Log opened at 2024-10-20 11:24:08.838977
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[47] Log closed at 2024-10-20 11:24:11.556891
+
+[47] Log opened at 2024-10-20 11:24:11.792379
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] Log opened at 2024-10-20 11:24:11.850242
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[47] Log closed at 2024-10-20 11:24:12.451481
+
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-20 11:24:13.097754
+
+[37] Log opened at 2024-10-20 11:24:13.148130
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] Log opened at 2024-10-20 11:24:13.259443
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] Log opened at 2024-10-20 11:24:13.259878
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-10-20 11:24:14.306093
+
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-20 11:24:14.957471
+
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-20 11:24:15.347480
+
+[49] Log opened at 2024-10-20 11:24:15.388778
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-10-20 11:24:16.616187
+
+[50] Log opened at 2024-10-20 11:58:18.650179
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[50] Log closed at 2024-10-20 11:58:19.788503
+
+[47] Log opened at 2024-10-20 11:58:20.074024
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[47] Log closed at 2024-10-20 11:58:20.997479
+
+[42] Log opened at 2024-10-20 11:59:10.511284
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-20 11:59:12.172152
+
+[44] Log opened at 2024-10-20 11:59:12.444714
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-10-20 11:59:13.360781
+
+[46] Log opened at 2024-10-20 11:59:57.102561
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-20 11:59:59.855908
+
+[46] Log opened at 2024-10-20 12:00:00.009879
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[50] Log opened at 2024-10-20 12:00:00.065873
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-20 12:00:00.676138
+
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[50] Log closed at 2024-10-20 12:00:01.287277
+
+[41] Log opened at 2024-10-20 12:00:01.345522
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] Log opened at 2024-10-20 12:00:01.456961
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] Log opened at 2024-10-20 12:00:01.462854
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-10-20 12:00:02.491149
+
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-10-20 12:00:03.104296
+
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-10-20 12:00:03.488314
+
+[48] Log opened at 2024-10-20 12:00:03.542934
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] Log closed at 2024-10-20 12:00:04.996251
+
+[44] Log opened at 2024-10-20 12:01:14.057925
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[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] [Step Debug] ->
+
+[44] Log closed at 2024-10-20 12:01:16.260564
+
+[44] Log opened at 2024-10-20 12:01:16.477920
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[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] ->
+
+[50] Log opened at 2024-10-20 12:01:16.554373
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[50] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- run -i 6
+[44] [Step Debug] <- run -i 12
+[44] [Step Debug] ->
+
+[44] Log closed at 2024-10-20 12:01:16.762447
+
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[50] [Step Debug] ->
+
+[50] Log closed at 2024-10-20 12:01:17.335342
+
+[51] Log opened at 2024-10-20 12:01:17.383891
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[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
+[46] Log opened at 2024-10-20 12:01:17.553577
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] Log opened at 2024-10-20 12:01:17.553666
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ->
+
+[37] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[46] [Step Debug] ->
+
+[37] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[46] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[37] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[46] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[37] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[46] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[37] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[37] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[37] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[46] [Step Debug] ->
+
+[37] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968
+[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968
+[46] [Step Debug] ->
+
+[37] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[46] [Step Debug] ->
+
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[37] [Step Debug] ->
+
+[46] [Step Debug] <- run -i 14
+[37] [Step Debug] <- run -i 14
+[46] [Step Debug] ->
+
+[46] Log closed at 2024-10-20 12:01:18.161882
+
+[51] [Step Debug] ->
+
+[51] Log closed at 2024-10-20 12:01:18.538252
+
+[37] [Step Debug] ->
+
+[37] Log closed at 2024-10-20 12:01:18.688230
+
+[48] Log opened at 2024-10-20 12:01:18.734580
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- run -i 12
+[48] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- stack_get -i 13
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- property_get -i 14 -n "$datos_entrada" -d 0 -c 0
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- property_get -i 15 -n "$data" -d 0 -c 0
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- property_get -i 16 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- context_names -i 17 -d 0
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- context_get -i 18 -d 0 -c 0
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- property_get -i 19 -n "$datos_entrada" -d 0 -c 0
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- property_get -i 20 -n "$data" -d 0 -c 0
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- property_get -i 21 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- property_get -i 22 -n "$datos_papel" -d 0 -c 0
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- property_get -i 23 -n "$datos_papel[\"interior\"]" -p 0 -d 0 -c 0
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- property_get -i 24 -n "$datos_papel[\"interior\"][\"negro\"]" -p 0 -d 0 -c 0
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2319
+[48] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- run -i 26
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-10-20 12:01:43.655462
+
+[42] Log opened at 2024-10-20 12:02:23.652565
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-20 12:02:26.379350
+
+[42] Log opened at 2024-10-20 12:02:26.658330
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] Log opened at 2024-10-20 12:02:26.729352
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-20 12:02:27.316368
+
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-10-20 12:02:27.933436
+
+[51] Log opened at 2024-10-20 12:02:27.980018
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[52] Log opened at 2024-10-20 12:02:28.061647
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] Log opened at 2024-10-20 12:02:28.069657
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[52] Log closed at 2024-10-20 12:02:29.104065
+
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-10-20 12:02:29.735593
+
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-20 12:02:30.089573
+
+[50] Log opened at 2024-10-20 12:02:30.132343
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[50] Log closed at 2024-10-20 12:02:31.592108
+
+[41] Log opened at 2024-10-20 12:03:13.823235
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-10-20 12:03:16.483553
+
+[41] Log opened at 2024-10-20 12:03:16.634290
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[50] Log opened at 2024-10-20 12:03:16.703358
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-10-20 12:03:17.296281
+
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[50] Log closed at 2024-10-20 12:03:17.872000
+
+[42] Log opened at 2024-10-20 12:03:17.916083
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] Log opened at 2024-10-20 12:03:17.987807
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] Log opened at 2024-10-20 12:03:18.003892
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-20 12:03:19.032456
+
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-20 12:03:19.646813
+
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-10-20 12:03:20.002969
+
+[44] Log opened at 2024-10-20 12:03:20.050237
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-10-20 12:03:21.473683
+
+[48] Log opened at 2024-10-20 12:33:43.945258
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] Log closed at 2024-10-20 12:33:44.962718
+
+[54] Log opened at 2024-10-20 12:33:44.978956
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-10-20 12:33:45.928785
+
+[54] Log opened at 2024-10-20 12:33:46.137821
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-10-20 12:33:46.784179
+
+[53] Log opened at 2024-10-20 12:33:47.082351
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-20 12:33:47.958266
+
+[53] Log opened at 2024-10-20 12:33:49.180420
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-20 12:33:50.637750
+
+[53] Log opened at 2024-10-20 12:33:50.655230
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-20 12:33:53.708484
+
+[53] Log opened at 2024-10-20 12:33:53.823335
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] Log opened at 2024-10-20 12:33:53.835671
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-20 12:33:54.475201
+
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-10-20 12:33:55.018197
+
+[53] Log opened at 2024-10-20 12:33:55.060578
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] Log opened at 2024-10-20 12:33:55.187792
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] Log opened at 2024-10-20 12:33:55.195254
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-10-20 12:33:56.184264
+
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-20 12:33:56.854138
+
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-10-20 12:33:57.228089
+
+[53] Log opened at 2024-10-20 12:33:57.270633
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-20 12:33:58.617742
+
+[54] Log opened at 2024-10-20 12:34:09.439226
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-10-20 12:34:12.132276
+
+[54] Log opened at 2024-10-20 12:34:12.329694
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] Log opened at 2024-10-20 12:34:12.385914
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-10-20 12:34:12.987684
+
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] Log closed at 2024-10-20 12:34:13.559941
+
+[50] Log opened at 2024-10-20 12:34:13.610967
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] Log opened at 2024-10-20 12:34:13.712476
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] Log opened at 2024-10-20 12:34:13.712654
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-20 12:34:14.745073
+
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[50] Log closed at 2024-10-20 12:34:15.497001
+
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-10-20 12:34:15.851243
+
+[55] Log opened at 2024-10-20 12:34:15.895047
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-10-20 12:34:17.324314
+
+[54] Log opened at 2024-10-20 12:36:44.988467
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-10-20 12:36:47.705825
+
+[54] Log opened at 2024-10-20 12:36:47.926223
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] Log opened at 2024-10-20 12:36:47.989720
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-10-20 12:36:48.586241
+
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-10-20 12:36:49.187395
+
+[46] Log opened at 2024-10-20 12:36:49.263489
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[50] Log opened at 2024-10-20 12:36:49.441509
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] Log opened at 2024-10-20 12:36:49.471725
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[50] Log closed at 2024-10-20 12:36:50.511885
+
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-20 12:36:51.077445
+
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] Log closed at 2024-10-20 12:36:51.425273
+
+[46] Log opened at 2024-10-20 12:36:51.478528
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-20 12:36:52.879493
+
+[41] Log opened at 2024-10-20 12:37:20.588073
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-10-20 12:37:23.368106
+
+[41] Log opened at 2024-10-20 12:37:23.616334
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] Log opened at 2024-10-20 12:37:23.685506
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-10-20 12:37:24.271814
+
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-10-20 12:37:24.844836
+
+[49] Log opened at 2024-10-20 12:37:24.897281
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] Log opened at 2024-10-20 12:37:24.996482
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] Log opened at 2024-10-20 12:37:24.999336
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-20 12:37:26.064778
+
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-10-20 12:37:26.684782
+
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-10-20 12:37:27.016907
+
+[56] Log opened at 2024-10-20 12:37:27.064558
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] Log closed at 2024-10-20 12:37:28.453086
+
+[46] Log opened at 2024-10-20 12:37:44.651549
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-20 12:37:47.396060
+
+[46] Log opened at 2024-10-20 12:37:47.589831
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] Log opened at 2024-10-20 12:37:47.652574
+[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58'
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-20 12:37:48.248774
+
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] Log closed at 2024-10-20 12:37:48.838694
+
+[53] Log opened at 2024-10-20 12:37:48.971332
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] Log opened at 2024-10-20 12:37:49.014317
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] Log opened at 2024-10-20 12:37:49.016107
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-20 12:37:50.062201
+
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-10-20 12:37:50.386372
+
+[58] Log opened at 2024-10-20 12:37:50.436407
+[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58'
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-20 12:37:51.020463
+
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] Log closed at 2024-10-20 12:37:51.780541
+
+[48] Log opened at 2024-10-20 12:42:16.975038
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] Log closed at 2024-10-20 12:42:19.508382
+
+[48] Log opened at 2024-10-20 12:42:19.751330
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] Log opened at 2024-10-20 12:42:19.817381
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] Log closed at 2024-10-20 12:42:20.408367
+
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-10-20 12:42:21.048805
+
+[46] Log opened at 2024-10-20 12:42:21.165548
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] Log opened at 2024-10-20 12:42:21.166046
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-20 12:42:22.204227
+
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log closed at 2024-10-20 12:42:22.918195
+
+[54] Log opened at 2024-10-20 12:42:50.981016
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-10-20 12:42:53.700668
+
+[54] Log opened at 2024-10-20 12:42:53.848491
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] Log opened at 2024-10-20 12:42:53.920103
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-10-20 12:42:54.512785
+
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-20 12:42:55.150847
+
+[48] Log opened at 2024-10-20 12:42:55.201118
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] Log opened at 2024-10-20 12:42:55.308776
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] Log opened at 2024-10-20 12:42:55.378041
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-10-20 12:42:56.394253
+
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] Log closed at 2024-10-20 12:42:56.976387
+
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-10-20 12:42:57.315760
+
+[56] Log opened at 2024-10-20 12:42:57.357881
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] Log closed at 2024-10-20 12:42:58.709835
+
+[59] Log opened at 2024-10-20 12:43:30.747192
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log closed at 2024-10-20 12:43:33.468363
+
+[59] Log opened at 2024-10-20 12:43:33.665570
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] Log opened at 2024-10-20 12:43:33.725856
+[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58'
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log closed at 2024-10-20 12:43:34.318558
+
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] Log closed at 2024-10-20 12:43:34.971642
+
+[55] Log opened at 2024-10-20 12:43:35.017359
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] Log opened at 2024-10-20 12:43:35.102671
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] Log opened at 2024-10-20 12:43:35.121304
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-10-20 12:43:36.134777
+
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-10-20 12:43:36.753336
+
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-20 12:43:37.116318
+
+[58] Log opened at 2024-10-20 12:43:37.159029
+[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58'
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] Log closed at 2024-10-20 12:43:38.548942
+
+[56] Log opened at 2024-10-20 12:44:45.877742
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] Log closed at 2024-10-20 12:44:48.458444
+
+[56] Log opened at 2024-10-20 12:44:48.667511
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[62] Log opened at 2024-10-20 12:44:48.735214
+[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62'
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] Log closed at 2024-10-20 12:44:49.330186
+
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[62] Log closed at 2024-10-20 12:44:49.929589
+
+[54] Log opened at 2024-10-20 12:44:49.979416
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] Log opened at 2024-10-20 12:44:50.075292
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] Log opened at 2024-10-20 12:44:50.076303
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log closed at 2024-10-20 12:44:51.102486
+
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-10-20 12:44:51.745786
+
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-20 12:44:52.118095
+
+[61] Log opened at 2024-10-20 12:44:52.162114
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] Log closed at 2024-10-20 12:44:53.554753
+
+[58] Log opened at 2024-10-20 12:45:04.081448
+[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58'
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] Log closed at 2024-10-20 12:45:06.883755
+
+[58] Log opened at 2024-10-20 12:45:07.039803
+[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58'
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] Log opened at 2024-10-20 12:45:07.103718
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] Log closed at 2024-10-20 12:45:07.705008
+
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] Log closed at 2024-10-20 12:45:08.505288
+
+[62] Log opened at 2024-10-20 12:45:08.558294
+[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62'
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] Log opened at 2024-10-20 12:45:08.657453
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] Log opened at 2024-10-20 12:45:08.668116
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log closed at 2024-10-20 12:45:09.739261
+
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[62] Log closed at 2024-10-20 12:45:10.399328
+
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-20 12:45:10.737057
+
+[41] Log opened at 2024-10-20 12:45:10.785284
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-10-20 12:45:12.433705
+
+[61] Log opened at 2024-10-20 13:08:17.876462
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] Log closed at 2024-10-20 13:08:20.529935
+
+[60] Log opened at 2024-10-20 13:08:20.785880
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] Log opened at 2024-10-20 13:08:20.842957
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-20 13:08:21.443925
+
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log closed at 2024-10-20 13:08:22.034822
+
+[58] Log opened at 2024-10-20 13:08:22.141023
+[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58'
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] Log opened at 2024-10-20 13:08:22.167463
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] Log opened at 2024-10-20 13:08:22.168086
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] Log closed at 2024-10-20 13:08:23.250985
+
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] Log closed at 2024-10-20 13:08:23.846396
+
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-20 13:08:24.190244
+
+[64] Log opened at 2024-10-20 13:08:24.243259
+[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64'
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[64] Log closed at 2024-10-20 13:08:25.637584
+
+[41] Log opened at 2024-10-20 13:08:50.685087
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-10-20 13:08:53.277948
+
+[41] Log opened at 2024-10-20 13:08:53.471201
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] Log opened at 2024-10-20 13:08:53.524595
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-10-20 13:08:54.128501
+
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-20 13:08:54.710722
+
+[61] Log opened at 2024-10-20 13:08:54.759184
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] Log opened at 2024-10-20 13:08:54.859521
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] Log opened at 2024-10-20 13:08:54.860760
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log closed at 2024-10-20 13:08:55.891980
+
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] Log closed at 2024-10-20 13:08:56.489431
+
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-20 13:08:56.831358
+
+[61] Log opened at 2024-10-20 13:08:56.883340
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] Log closed at 2024-10-20 13:08:58.309607
+
+[64] Log opened at 2024-10-20 13:11:14.621298
+[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64'
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[64] Log closed at 2024-10-20 13:11:17.361850
+
+[64] Log opened at 2024-10-20 13:11:17.571080
+[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64'
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] Log opened at 2024-10-20 13:11:17.622196
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[64] Log closed at 2024-10-20 13:11:18.231116
+
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-20 13:11:18.785307
+
+[41] Log opened at 2024-10-20 13:11:18.978165
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] Log opened at 2024-10-20 13:11:19.080017
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[64] Log opened at 2024-10-20 13:11:19.080638
+[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64'
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-20 13:11:20.151431
+
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-10-20 13:11:21.662583
+
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[64] Log closed at 2024-10-20 13:11:22.005234
+
+[56] Log opened at 2024-10-20 13:11:22.114053
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] Log closed at 2024-10-20 13:11:23.495446
+
+[60] Log opened at 2024-10-20 13:11:44.812552
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-20 13:11:47.555818
+
+[60] Log opened at 2024-10-20 13:11:47.709841
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] Log opened at 2024-10-20 13:11:47.775615
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-20 13:11:48.371069
+
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-20 13:11:48.966007
+
+[67] Log opened at 2024-10-20 13:11:49.015653
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] Log opened at 2024-10-20 13:11:49.197431
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] Log opened at 2024-10-20 13:11:49.202718
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-20 13:11:50.270068
+
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[67] Log closed at 2024-10-20 13:11:50.930901
+
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-20 13:11:51.302434
+
+[41] Log opened at 2024-10-20 13:11:51.345022
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-10-20 13:11:52.683249
+
+[65] Log opened at 2024-10-20 13:12:31.084054
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] Log opened at 2024-10-20 13:12:39.968579
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-20 13:12:41.835564
+
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] Log closed at 2024-10-20 13:12:45.358005
+
+[68] Log opened at 2024-10-20 13:12:45.662404
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] Log opened at 2024-10-20 13:12:45.732075
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] Log closed at 2024-10-20 13:12:46.321540
+
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-20 13:12:47.015384
+
+[63] Log opened at 2024-10-20 13:12:47.065477
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] Log opened at 2024-10-20 13:12:47.190907
+[67] Log opened at 2024-10-20 13:12:47.190897
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-20 13:12:48.264042
+
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-20 13:12:50.844626
+
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[67] Log closed at 2024-10-20 13:12:51.305404
+
+[66] Log opened at 2024-10-20 13:12:51.352327
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-20 13:12:52.744149
+
+[65] Log opened at 2024-10-20 13:13:46.780493
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-20 13:13:49.623136
+
+[65] Log opened at 2024-10-20 13:13:49.821706
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] Log opened at 2024-10-20 13:13:49.876182
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-20 13:13:50.474501
+
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-20 13:13:51.196277
+
+[69] Log opened at 2024-10-20 13:13:51.251614
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] Log opened at 2024-10-20 13:13:51.386547
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] Log opened at 2024-10-20 13:13:51.389838
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-20 13:13:52.388112
+
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[69] Log closed at 2024-10-20 13:13:53.065354
+
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-20 13:13:53.445514
+
+[69] Log opened at 2024-10-20 13:13:53.491450
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[69] Log closed at 2024-10-20 13:13:55.350763
+
+[70] Log opened at 2024-10-20 13:16:03.564873
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] Log closed at 2024-10-20 13:16:06.207212
+
+[70] Log opened at 2024-10-20 13:16:06.421672
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] Log opened at 2024-10-20 13:16:06.479545
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] Log closed at 2024-10-20 13:16:07.087743
+
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] Log closed at 2024-10-20 13:16:07.728826
+
+[63] Log opened at 2024-10-20 13:16:07.787510
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] Log opened at 2024-10-20 13:16:07.888878
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] Log opened at 2024-10-20 13:16:07.897597
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-20 13:16:08.973828
+
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-20 13:16:09.637489
+
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-20 13:16:09.981484
+
+[65] Log opened at 2024-10-20 13:16:10.024945
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-20 13:16:11.386923
+
+[71] Log opened at 2024-10-20 13:20:19.694650
+[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71'
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] Log closed at 2024-10-20 13:20:22.500685
+
+[70] Log opened at 2024-10-20 13:20:22.719400
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] Log opened at 2024-10-20 13:20:22.770305
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] Log closed at 2024-10-20 13:20:23.376876
+
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-20 13:20:24.000467
+
+[60] Log opened at 2024-10-20 13:20:24.045465
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] Log opened at 2024-10-20 13:20:24.147064
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] Log opened at 2024-10-20 13:20:24.152714
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] Log closed at 2024-10-20 13:20:25.172604
+
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-20 13:20:25.819514
+
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] Log closed at 2024-10-20 13:20:26.171627
+
+[46] Log opened at 2024-10-20 13:20:26.219487
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-20 13:20:27.566205
+
+[61] Log opened at 2024-10-20 13:21:41.360267
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] Log closed at 2024-10-20 13:21:44.080518
+
+[61] Log opened at 2024-10-20 13:21:44.296630
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] Log opened at 2024-10-20 13:21:44.358169
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] Log closed at 2024-10-20 13:21:44.953567
+
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] Log closed at 2024-10-20 13:21:45.569665
+
+[71] Log opened at 2024-10-20 13:21:45.616917
+[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71'
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] Log opened at 2024-10-20 13:21:45.706843
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] Log opened at 2024-10-20 13:21:45.710933
+[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72'
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-20 13:21:46.760929
+
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] Log closed at 2024-10-20 13:21:47.407360
+
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] Log closed at 2024-10-20 13:21:47.766227
+
+[63] Log opened at 2024-10-20 13:21:47.811727
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-20 13:21:49.186731
+
+[66] Log opened at 2024-10-20 13:23:04.339556
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-20 13:23:06.937539
+
+[66] Log opened at 2024-10-20 13:23:07.037043
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] Log opened at 2024-10-20 13:23:07.130769
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-20 13:23:07.686872
+
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-20 13:23:08.335788
+
+[73] Log opened at 2024-10-20 13:23:08.366476
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] Log opened at 2024-10-20 13:23:08.372260
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] Log opened at 2024-10-20 13:23:08.375047
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] Log closed at 2024-10-20 13:23:09.396777
+
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-20 13:23:10.017391
+
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] Log closed at 2024-10-20 13:23:10.379412
+
+[73] Log opened at 2024-10-20 13:23:10.422965
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-20 13:23:11.860938
+
+[46] Log opened at 2024-10-20 13:23:52.730717
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-20 13:23:55.585794
+
+[46] Log opened at 2024-10-20 13:23:55.770261
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] Log opened at 2024-10-20 13:23:55.820325
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-20 13:23:56.445715
+
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-20 13:23:57.057458
+
+[46] Log opened at 2024-10-20 13:23:57.100619
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] Log opened at 2024-10-20 13:23:57.199626
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] Log opened at 2024-10-20 13:23:57.206998
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] Log closed at 2024-10-20 13:23:58.266826
+
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-20 13:23:58.898632
+
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-20 13:23:59.274839
+
+[56] Log opened at 2024-10-20 13:23:59.320487
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] Log closed at 2024-10-20 13:24:00.681256
+
+[63] Log opened at 2024-10-20 13:25:09.809513
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-20 13:25:12.508327
+
+[63] Log opened at 2024-10-20 13:25:12.718755
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[75] Log opened at 2024-10-20 13:25:12.781033
+[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75'
+[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-20 13:25:13.377626
+
+[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[75] Log closed at 2024-10-20 13:25:13.993746
+
+[60] Log opened at 2024-10-20 13:25:14.042346
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] Log opened at 2024-10-20 13:25:14.138697
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] Log opened at 2024-10-20 13:25:14.143021
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-20 13:25:15.210305
+
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-20 13:25:15.901133
+
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] Log closed at 2024-10-20 13:25:16.257613
+
+[46] Log opened at 2024-10-20 13:25:16.308696
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-20 13:25:17.700210
+
+[72] Log opened at 2024-10-20 13:26:54.070087
+[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72'
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] Log closed at 2024-10-20 13:26:56.809051
+
+[72] Log opened at 2024-10-20 13:26:57.016030
+[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72'
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] Log opened at 2024-10-20 13:26:57.082816
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] Log closed at 2024-10-20 13:26:57.679019
+
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-20 13:26:58.317239
+
+[60] Log opened at 2024-10-20 13:26:58.441737
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[75] Log opened at 2024-10-20 13:26:58.558296
+[63] Log opened at 2024-10-20 13:26:58.558230
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75'
+[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-20 13:26:59.565545
+
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-20 13:27:00.210127
+
+[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[75] Log closed at 2024-10-20 13:27:00.548150
+
+[60] Log opened at 2024-10-20 13:27:00.623760
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-20 13:27:01.985036
+
+[73] Log opened at 2024-10-20 13:27:19.835302
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-20 13:27:22.494641
+
+[73] Log opened at 2024-10-20 13:27:22.714346
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] Log opened at 2024-10-20 13:27:22.767944
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-20 13:27:23.382202
+
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-20 13:27:24.004038
+
+[76] Log opened at 2024-10-20 13:27:24.059413
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] Log opened at 2024-10-20 13:27:24.164173
+[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72'
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[77] Log opened at 2024-10-20 13:27:24.165712
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] Log closed at 2024-10-20 13:27:25.240391
+
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-20 13:27:25.846797
+
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[77] Log closed at 2024-10-20 13:27:26.209284
+
+[66] Log opened at 2024-10-20 13:27:26.262230
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-20 13:27:27.666296
+
+[46] Log opened at 2024-10-20 13:28:22.317413
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-20 13:28:25.138473
+
+[46] Log opened at 2024-10-20 13:28:25.338498
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] Log opened at 2024-10-20 13:28:25.390639
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-20 13:28:25.991038
+
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-20 13:28:26.608679
+
+[73] Log opened at 2024-10-20 13:28:26.669820
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] Log opened at 2024-10-20 13:28:26.792446
+[63] Log opened at 2024-10-20 13:28:26.792447
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-20 13:28:27.828140
+
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-20 13:28:28.495483
+
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] Log closed at 2024-10-20 13:28:28.848003
+
+[73] Log opened at 2024-10-20 13:28:28.918738
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-20 13:28:30.311848
+
+[76] Log opened at 2024-10-20 13:28:33.964383
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-20 13:28:36.831422
+
+[76] Log opened at 2024-10-20 13:28:37.042510
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[77] Log opened at 2024-10-20 13:28:37.092316
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-20 13:28:37.710596
+
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[77] Log closed at 2024-10-20 13:28:38.322132
+
+[79] Log opened at 2024-10-20 13:28:38.497292
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] Log opened at 2024-10-20 13:28:38.635429
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] Log opened at 2024-10-20 13:28:38.649248
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-20 13:28:39.667436
+
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-20 13:28:40.392974
+
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-20 13:28:40.759391
+
+[79] Log opened at 2024-10-20 13:28:40.812417
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-20 13:28:42.235471
+
+[63] Log opened at 2024-10-20 13:29:50.522654
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-20 13:29:53.265588
+
+[63] Log opened at 2024-10-20 13:29:53.495235
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[77] Log opened at 2024-10-20 13:29:53.561018
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-20 13:29:54.156505
+
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[77] Log closed at 2024-10-20 13:29:54.815452
+
+[73] Log opened at 2024-10-20 13:29:54.884632
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] Log opened at 2024-10-20 13:29:55.030812
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] Log opened at 2024-10-20 13:29:55.046539
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-20 13:29:56.083876
+
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-20 13:29:56.739388
+
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-20 13:29:57.074521
+
+[77] Log opened at 2024-10-20 13:29:57.121089
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[77] Log closed at 2024-10-20 13:29:58.554993
+
+[79] Log opened at 2024-10-20 13:30:16.226678
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-20 13:30:18.904772
+
+[79] Log opened at 2024-10-20 13:30:19.109024
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[80] Log opened at 2024-10-20 13:30:19.159415
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-20 13:30:19.777348
+
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[80] Log closed at 2024-10-20 13:30:20.401346
+
+[78] Log opened at 2024-10-20 13:30:20.443516
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] Log opened at 2024-10-20 13:30:20.540380
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[80] Log opened at 2024-10-20 13:30:20.542710
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-20 13:30:21.574054
+
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-20 13:30:22.212986
+
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[80] Log closed at 2024-10-20 13:30:22.560324
+
+[72] Log opened at 2024-10-20 13:30:22.606523
+[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72'
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] Log closed at 2024-10-20 13:30:24.298451
+
+[77] Log opened at 2024-10-20 13:30:35.281500
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[77] Log closed at 2024-10-20 13:30:37.962026
+
+[77] Log opened at 2024-10-20 13:30:38.175265
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] Log opened at 2024-10-20 13:30:38.228731
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[77] Log closed at 2024-10-20 13:30:38.836692
+
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-20 13:30:39.396362
+
+[81] Log opened at 2024-10-20 13:30:39.454110
+[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81'
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] Log opened at 2024-10-20 13:30:39.555008
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] Log opened at 2024-10-20 13:30:39.560446
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-20 13:30:40.613706
+
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[81] Log closed at 2024-10-20 13:30:41.221458
+
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-20 13:30:41.554165
+
+[76] Log opened at 2024-10-20 13:30:41.615950
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-20 13:30:43.005588
+
+[72] Log opened at 2024-10-20 13:39:01.323164
+[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72'
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] Log closed at 2024-10-20 13:39:04.090661
+
+[72] Log opened at 2024-10-20 13:39:04.297631
+[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72'
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] Log opened at 2024-10-20 13:39:04.354169
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] Log closed at 2024-10-20 13:39:04.970055
+
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-20 13:39:05.564928
+
+[77] Log opened at 2024-10-20 13:39:05.609556
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] Log opened at 2024-10-20 13:39:05.701725
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[82] Log opened at 2024-10-20 13:39:05.702139
+[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82'
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[82] Log closed at 2024-10-20 13:39:06.707653
+
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[77] Log closed at 2024-10-20 13:39:07.302776
+
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-20 13:39:07.660112
+
+[63] Log opened at 2024-10-20 13:39:07.704402
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-20 13:39:09.089004
+
+[76] Log opened at 2024-10-20 13:39:26.865158
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-20 13:39:29.524928
+
+[76] Log opened at 2024-10-20 13:39:29.704100
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] Log opened at 2024-10-20 13:39:29.752998
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-20 13:39:30.360962
+
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-20 13:39:30.935414
+
+[72] Log opened at 2024-10-20 13:39:30.996485
+[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72'
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] Log opened at 2024-10-20 13:39:31.094047
+[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83'
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[80] Log opened at 2024-10-20 13:39:31.099341
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] Log closed at 2024-10-20 13:39:32.102239
+
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] Log closed at 2024-10-20 13:39:33.561804
+
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[80] Log closed at 2024-10-20 13:39:34.191677
+
+[82] Log opened at 2024-10-20 13:39:34.234454
+[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82'
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[82] Log closed at 2024-10-20 13:39:36.489074
+
+[63] Log opened at 2024-10-20 13:39:48.106381
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-20 13:39:50.786117
+
+[63] Log opened at 2024-10-20 13:39:50.988755
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] Log opened at 2024-10-20 13:39:51.037545
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-20 13:39:51.644696
+
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-20 13:39:52.237686
+
+[83] Log opened at 2024-10-20 13:39:52.331684
+[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83'
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] Log opened at 2024-10-20 13:39:52.362484
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[84] Log opened at 2024-10-20 13:39:52.365474
+[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84'
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-20 13:39:53.383615
+
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] Log closed at 2024-10-20 13:39:54.042024
+
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[84] Log closed at 2024-10-20 13:39:54.385644
+
+[76] Log opened at 2024-10-20 13:39:54.435339
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-20 13:39:55.882277
+
+[82] Log opened at 2024-10-20 13:40:30.265627
+[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82'
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[82] Log closed at 2024-10-20 13:40:33.028109
+
+[82] Log opened at 2024-10-20 13:40:33.224184
+[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82'
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] Log opened at 2024-10-20 13:40:33.273721
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[82] Log closed at 2024-10-20 13:40:33.888871
+
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-20 13:40:34.471277
+
+[63] Log opened at 2024-10-20 13:40:34.515048
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] Log opened at 2024-10-20 13:40:34.603243
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] Log opened at 2024-10-20 13:40:34.607140
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-20 13:40:35.606816
+
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-20 13:40:36.275901
+
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] Log closed at 2024-10-20 13:40:36.610128
+
+[79] Log opened at 2024-10-20 13:40:36.661538
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-20 13:40:38.054745
+
+[76] Log opened at 2024-10-20 13:41:57.492154
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-20 13:42:00.198313
+
+[76] Log opened at 2024-10-20 13:42:00.402888
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] Log opened at 2024-10-20 13:42:00.453434
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] Log opened at 2024-10-20 13:42:00.706555
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-20 13:42:01.059025
+
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-20 13:42:01.617581
+
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-20 13:42:03.469404
+
+[79] Log opened at 2024-10-20 13:42:03.614797
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] Log opened at 2024-10-20 13:42:03.684315
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-20 13:42:04.283973
+
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-20 13:42:04.929169
+
+[80] Log opened at 2024-10-20 13:42:04.973539
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[84] Log opened at 2024-10-20 13:42:05.082856
+[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84'
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[86] Log opened at 2024-10-20 13:42:05.083471
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[84] Log closed at 2024-10-20 13:42:06.096073
+
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[80] Log closed at 2024-10-20 13:42:06.713864
+
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[86] Log closed at 2024-10-20 13:42:07.066769
+
+[63] Log opened at 2024-10-20 13:42:07.113217
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-20 13:42:08.474332
+
+[85] Log opened at 2024-10-20 13:42:44.056897
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] Log closed at 2024-10-20 13:42:46.732786
+
+[85] Log opened at 2024-10-20 13:42:46.938849
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] Log opened at 2024-10-20 13:42:47.000157
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] Log closed at 2024-10-20 13:42:47.601035
+
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-20 13:42:48.179525
+
+[84] Log opened at 2024-10-20 13:42:48.230786
+[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84'
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] Log opened at 2024-10-20 13:42:48.333750
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] Log opened at 2024-10-20 13:42:48.334908
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-20 13:42:49.362783
+
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[84] Log closed at 2024-10-20 13:42:50.008210
+
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-20 13:42:50.357707
+
+[87] Log opened at 2024-10-20 13:42:50.401536
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-20 13:42:51.803913
+
+[22] Log opened at 2024-10-21 14:21:32.502355
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59: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] <- feature_set -i 5 -n extended_properties -v 1
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- run -i 12
+[22] [Step Debug] ->
+
+[22] Log closed at 2024-10-21 14:21:33.154065
+
+[22] Log opened at 2024-10-21 14:21:33.158729
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59: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] <- feature_set -i 5 -n extended_properties -v 1
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- run -i 12
+[22] [Step Debug] ->
+
+[22] Log closed at 2024-10-21 14:21:33.636447
+
+[22] Log opened at 2024-10-21 14:21:33.769978
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59: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] <- feature_set -i 5 -n extended_properties -v 1
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- run -i 12
+[22] [Step Debug] ->
+
+[22] Log closed at 2024-10-21 14:21:33.969749
+
+[25] Log opened at 2024-10-21 14:21:34.168388
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[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] Log closed at 2024-10-21 14:21:34.698674
+
+[25] Log opened at 2024-10-21 14:21:35.525332
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[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] Log closed at 2024-10-21 14:21:36.431891
+
+[25] Log opened at 2024-10-21 14:21:36.441163
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[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] Log closed at 2024-10-21 14:21:37.061932
+
+[25] Log opened at 2024-10-21 14:21:37.111632
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[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] Log closed at 2024-10-21 14:21:37.231123
+
+[25] Log opened at 2024-10-21 14:21:37.312190
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[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] ->
+
+[27] Log opened at 2024-10-21 14:21:37.333010
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59: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] <- feature_set -i 5 -n extended_properties -v 1
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- run -i 6
+[25] [Step Debug] <- run -i 12
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[27] [Step Debug] ->
+
+[27] Log closed at 2024-10-21 14:21:37.827727
+
+[25] [Step Debug] ->
+
+[25] Log closed at 2024-10-21 14:21:38.260900
+
+[25] Log opened at 2024-10-21 14:21:41.244265
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[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] Log closed at 2024-10-21 14:21:41.946659
+
+[25] Log opened at 2024-10-21 14:21:42.012631
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[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] Log closed at 2024-10-21 14:21:42.185894
+
+[28] Log opened at 2024-10-21 14:21:42.312940
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[27] Log opened at 2024-10-21 14:21:42.318203
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[28] [Step Debug] ->
+
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[28] [Step Debug] ->
+
+[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ->
+
+[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[28] [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 5 -n extended_properties -v 1
+[28] [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] <- feature_set -i 5 -n extended_properties -v 1
+[27] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[27] [Step Debug] ->
+
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968
+[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968
+[27] [Step Debug] ->
+
+[28] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[27] [Step Debug] ->
+
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[28] [Step Debug] ->
+
+[27] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[28] [Step Debug] ->
+
+[27] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[27] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[28] [Step Debug] ->
+
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968
+[28] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968
+[28] [Step Debug] ->
+
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[27] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[28] [Step Debug] ->
+
+[23] Log opened at 2024-10-21 14:21:42.426874
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[23] [Step Debug] ->
+
+[28] [Step Debug] <- run -i 14
+[23] [Step Debug] <- run -i 6
+[27] [Step Debug] <- run -i 14
+[27] [Step Debug] ->
+
+[27] Log closed at 2024-10-21 14:21:43.074308
+
+[28] [Step Debug] ->
+
+[28] Log closed at 2024-10-21 14:21:43.511413
+
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[23] [Step Debug] ->
+
+[23] Log closed at 2024-10-21 14:21:43.748101
+
+[28] Log opened at 2024-10-21 14:21:45.818374
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[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] ->
+
+[28] [Step Debug] <- run -i 12
+[28] [Step Debug] ->
+
+[28] [Step Debug] ->
+
+[28] Log closed at 2024-10-21 14:21:47.997794
+
+[28] Log opened at 2024-10-21 14:21:48.066370
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[28] [Step Debug] ->
+
+[23] Log opened at 2024-10-21 14:21:48.083854
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968
+[28] [Step Debug] ->
+
+[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[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] ->
+
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[23] [Step Debug] ->
+
+[28] [Step Debug] <- run -i 12
+[23] [Step Debug] <- run -i 6
+[28] [Step Debug] ->
+
+[28] Log closed at 2024-10-21 14:21:48.221714
+
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[23] [Step Debug] ->
+
+[23] Log closed at 2024-10-21 14:21:48.779886
+
+[28] Log opened at 2024-10-21 14:21:48.808408
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[28] [Step Debug] ->
+
+[23] Log opened at 2024-10-21 14:21:48.814538
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[28] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[28] [Step Debug] ->
+
+[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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
+[30] Log opened at 2024-10-21 14:21:48.820996
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[23] [Step Debug] ->
+
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[23] [Step Debug] ->
+
+[30] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ->
+
+[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[23] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[28] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[30] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[23] [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] ->
+
+[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968
+[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968
+[30] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968
+[23] [Step Debug] ->
+
+[28] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[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] ->
+
+[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[23] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[23] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error"
+[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[30] [Step Debug] ->
+
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error"
+[23] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 11 -n extended_properties -v 1
+[30] [Step Debug] ->
+
+[23] [Step Debug] <- run -i 12
+[28] [Step Debug] <- run -i 12
+[30] [Step Debug] <- run -i 12
+[23] [Step Debug] ->
+
+[23] Log closed at 2024-10-21 14:21:49.330094
+
+[28] [Step Debug] ->
+
+[28] Log closed at 2024-10-21 14:21:49.702132
+
+[30] [Step Debug] ->
+
+[30] Log closed at 2024-10-21 14:21:49.831231
+
+[28] Log opened at 2024-10-21 14:21:49.875758
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[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] ->
+
+[28] [Step Debug] <- run -i 12
+[28] [Step Debug] ->
+
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stack_get -i 13
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- property_get -i 14 -n "$datos_entrada" -d 0 -c 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- property_get -i 15 -n "$data" -d 0 -c 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- property_get -i 16 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- property_get -i 17 -n "$datos_papel" -d 0 -c 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_names -i 18 -d 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_get -i 19 -d 0 -c 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- property_get -i 20 -n "$presupuesto" -d 0 -c 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_remove -i 21 -d 280026
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- run -i 22
+[28] [Step Debug] ->
+
+[28] Log closed at 2024-10-21 14:21:54.972374
+
+[24] Log opened at 2024-10-21 14:22:27.059187
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- run -i 11
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-10-21 14:22:27.563672
+
+[24] Log opened at 2024-10-21 14:22:27.571560
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- run -i 11
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-10-21 14:22:27.995905
+
+[26] Log opened at 2024-10-21 14:22:30.579786
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59: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] <- feature_set -i 5 -n extended_properties -v 1
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[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-10-21 14:22:32.766456
+
+[25] Log opened at 2024-10-21 14:22:32.917793
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] ->
+
+[26] Log opened at 2024-10-21 14:22:32.921980
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[25] [Step Debug] ->
+
+[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[25] [Step Debug] ->
+
+[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[26] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[25] [Step Debug] ->
+
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[26] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[25] [Step Debug] ->
+
+[26] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[26] [Step Debug] ->
+
+[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] ->
+
+[25] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[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] ->
+
+[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[26] [Step Debug] ->
+
+[25] [Step Debug] <- run -i 12
+[26] [Step Debug] <- run -i 12
+[25] [Step Debug] ->
+
+[25] Log closed at 2024-10-21 14:22:33.099806
+
+[26] [Step Debug] ->
+
+[26] Log closed at 2024-10-21 14:22:33.640614
+
+[25] Log opened at 2024-10-21 14:22:33.704063
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[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] ->
+
+[25] [Step Debug] <- run -i 11
+[27] Log opened at 2024-10-21 14:22:33.832926
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[29] Log opened at 2024-10-21 14:22:33.833899
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ->
+
+[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[29] [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] ->
+
+[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[29] [Step Debug] ->
+
+[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[29] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[27] [Step Debug] ->
+
+[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[29] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[27] [Step Debug] ->
+
+[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[29] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[27] [Step Debug] ->
+
+[29] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[29] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[29] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[27] [Step Debug] ->
+
+[29] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[29] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[27] [Step Debug] ->
+
+[29] [Step Debug] ->
+
+[29] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[29] [Step Debug] ->
+
+[29] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[29] [Step Debug] ->
+
+[29] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[29] [Step Debug] ->
+
+[29] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[29] [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] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- run -i 12
+[29] [Step Debug] <- run -i 12
+[27] [Step Debug] ->
+
+[27] Log closed at 2024-10-21 14:22:34.403996
+
+[25] [Step Debug] ->
+
+[25] Log closed at 2024-10-21 14:22:34.779141
+
+[29] [Step Debug] ->
+
+[29] Log closed at 2024-10-21 14:22:34.916047
+
+[27] Log opened at 2024-10-21 14:22:34.966465
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59: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] <- feature_set -i 5 -n extended_properties -v 1
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433
+[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
+[27] [Step Debug] ->
+
+[27] Log closed at 2024-10-21 14:22:35.791164
+
+[23] Log opened at 2024-10-21 14:34:33.586787
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 435
+[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-10-21 14:34:35.665806
+
+[23] Log opened at 2024-10-21 14:34:35.878518
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[23] [Step Debug] ->
+
+[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 435
+[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] ->
+
+[26] Log opened at 2024-10-21 14:34:35.950727
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59: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] <- feature_set -i 5 -n extended_properties -v 1
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- run -i 6
+[23] [Step Debug] <- run -i 11
+[23] [Step Debug] ->
+
+[23] Log closed at 2024-10-21 14:34:36.152837
+
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[26] [Step Debug] ->
+
+[26] Log closed at 2024-10-21 14:34:36.803515
+
+[25] Log opened at 2024-10-21 14:34:37.208084
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] ->
+
+[24] Log opened at 2024-10-21 14:34:37.213835
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[25] [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] ->
+
+[30] Log opened at 2024-10-21 14:34:37.225152
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[24] [Step Debug] ->
+
+[30] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[30] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[24] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1
+[30] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 435
+[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 435
+[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 435
+[30] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error"
+[30] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[25] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[25] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[25] [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] ->
+
+[30] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1
+[30] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 435
+[25] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 435
+[24] [Step Debug] ->
+
+[25] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 10 -n extended_properties -v 1
+[30] [Step Debug] ->
+
+[24] [Step Debug] <- run -i 12
+[25] [Step Debug] <- run -i 12
+[30] [Step Debug] <- run -i 11
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-10-21 14:34:37.826010
+
+[30] [Step Debug] ->
+
+[30] Log closed at 2024-10-21 14:34:37.950298
+
+[24] Log opened at 2024-10-21 14:34:38.014692
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 435
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- run -i 11
+[25] [Step Debug] ->
+
+[25] Log closed at 2024-10-21 14:34:38.368662
+
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-10-21 14:34:38.912948
+
+[25] Log opened at 2024-10-21 14:34:39.038030
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[25] [Step Debug] ->
+
+[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 435
+[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] ->
+
+[25] [Step Debug] <- run -i 11
+[25] [Step Debug] ->
+
+[25] Log closed at 2024-10-21 14:34:50.572123
+
+[26] Log opened at 2024-10-21 14:42:56.884474
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-21 14:42:58.183426
+
+[28] Log opened at 2024-10-21 14:42:58.265539
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-10-21 14:42:58.937554
+
+[28] Log opened at 2024-10-21 14:42:59.062229
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] Log opened at 2024-10-21 14:42:59.075823
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] Log opened at 2024-10-21 14:42:59.213319
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-21 14:43:00.045885
+
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-10-21 14:43:00.686676
+
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-10-21 14:43:01.120746
+
+[24] Log opened at 2024-10-21 14:43:14.559655
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 14:43:18.031528
+
+[24] Log opened at 2024-10-21 14:43:18.126967
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[25] Log opened at 2024-10-21 14:43:18.131326
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] Log opened at 2024-10-21 14:43:18.132470
+[32] Log opened at 2024-10-21 14:43:18.132543
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[27] Log opened at 2024-10-21 14:43:18.132124
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] Log opened at 2024-10-21 14:43:18.134791
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 14:43:18.817454
+
+[24] Log opened at 2024-10-21 14:43:18.819991
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-10-21 14:43:19.251736
+
+[31] Log opened at 2024-10-21 14:43:19.254472
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-10-21 14:43:19.592281
+
+[32] Log opened at 2024-10-21 14:43:19.594236
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-21 14:43:19.936761
+
+[34] Log opened at 2024-10-21 14:43:19.938956
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-10-21 14:43:20.281054
+
+[27] Log opened at 2024-10-21 14:43:20.283339
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-10-21 14:43:20.723844
+
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 14:43:21.074413
+
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-10-21 14:43:21.419036
+
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-10-21 14:43:21.753019
+
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-21 14:43:22.088144
+
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-10-21 14:43:22.438633
+
+[25] Log opened at 2024-10-21 14:43:22.497364
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] Log opened at 2024-10-21 14:43:22.501950
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] Log opened at 2024-10-21 14:43:22.556838
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] Log opened at 2024-10-21 14:43:22.568824
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] Log opened at 2024-10-21 14:43:22.570618
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] Log opened at 2024-10-21 14:43:22.618772
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-10-21 14:43:23.636685
+
+[32] Log opened at 2024-10-21 14:43:23.638698
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-10-21 14:43:24.193380
+
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-10-21 14:43:24.730511
+
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-21 14:43:25.275705
+
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-10-21 14:43:25.948593
+
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 14:43:26.612564
+
+[25] Log opened at 2024-10-21 14:43:26.627955
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] Log opened at 2024-10-21 14:43:26.628477
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] Log opened at 2024-10-21 14:43:26.628852
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-10-21 14:43:26.988283
+
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-10-21 14:43:27.725448
+
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-10-21 14:43:28.080140
+
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-10-21 14:43:28.436784
+
+[26] Log opened at 2024-10-21 14:44:13.781417
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-21 14:44:14.713987
+
+[26] Log opened at 2024-10-21 14:44:14.723334
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-21 14:44:15.683821
+
+[30] Log opened at 2024-10-21 14:49:59.348188
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] Log opened at 2024-10-21 14:49:59.365326
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] Log opened at 2024-10-21 14:49:59.383370
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] Log opened at 2024-10-21 14:49:59.399724
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] Log opened at 2024-10-21 14:49:59.425170
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-21 14:50:11.707535
+
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 14:50:23.621608
+
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-10-21 14:50:35.117754
+
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-10-21 14:50:47.095438
+
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-10-21 14:50:59.973426
+
+[28] Log opened at 2024-10-21 14:59:14.509914
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log opened at 2024-10-21 14:59:16.265120
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-10-21 14:59:17.097617
+
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-21 14:59:18.851462
+
+[34] Log opened at 2024-10-21 14:59:19.052269
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] Log opened at 2024-10-21 14:59:19.108632
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-21 14:59:19.710173
+
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-10-21 14:59:20.307144
+
+[24] Log opened at 2024-10-21 14:59:20.379318
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] Log opened at 2024-10-21 14:59:20.470058
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[32] Log opened at 2024-10-21 14:59:20.470058
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-10-21 14:59:21.541670
+
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 14:59:22.127892
+
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-10-21 14:59:22.469656
+
+[27] Log opened at 2024-10-21 14:59:22.515421
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-10-21 14:59:23.891995
+
+[26] Log opened at 2024-10-21 15:00:59.454961
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-21 15:01:01.973925
+
+[26] Log opened at 2024-10-21 15:01:02.167123
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] Log opened at 2024-10-21 15:01:02.221090
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-21 15:01:02.830518
+
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-10-21 15:01:03.447240
+
+[27] Log opened at 2024-10-21 15:01:03.559549
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] Log opened at 2024-10-21 15:01:03.579172
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[28] Log opened at 2024-10-21 15:01:03.579331
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-10-21 15:01:04.619368
+
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-10-21 15:01:05.267615
+
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-10-21 15:01:05.617283
+
+[34] Log opened at 2024-10-21 15:01:05.660047
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-21 15:01:07.053497
+
+[35] Log opened at 2024-10-21 15:03:00.120516
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-10-21 15:03:02.752660
+
+[35] Log opened at 2024-10-21 15:03:02.949407
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] Log opened at 2024-10-21 15:03:03.013655
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-10-21 15:03:03.617542
+
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-10-21 15:03:04.232540
+
+[36] Log opened at 2024-10-21 15:03:04.330068
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] Log opened at 2024-10-21 15:03:04.375440
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] Log opened at 2024-10-21 15:03:04.383409
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-21 15:03:05.465055
+
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-10-21 15:03:06.038392
+
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-10-21 15:03:06.369829
+
+[31] Log opened at 2024-10-21 15:03:06.417076
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-10-21 15:03:07.799320
+
+[34] Log opened at 2024-10-21 15:04:05.598702
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-21 15:04:08.113939
+
+[34] Log opened at 2024-10-21 15:04:08.305713
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] Log opened at 2024-10-21 15:04:08.387061
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-21 15:04:08.973620
+
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-10-21 15:04:09.610948
+
+[26] Log opened at 2024-10-21 15:04:09.657375
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] Log opened at 2024-10-21 15:04:09.756867
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] Log opened at 2024-10-21 15:04:09.757263
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 15:04:10.817743
+
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-21 15:04:11.419988
+
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-21 15:04:11.749258
+
+[35] Log opened at 2024-10-21 15:04:11.793408
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-10-21 15:04:13.161628
+
+[31] Log opened at 2024-10-21 15:04:35.053640
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-10-21 15:04:37.580023
+
+[31] Log opened at 2024-10-21 15:04:37.781644
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] Log opened at 2024-10-21 15:04:37.840285
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-10-21 15:04:38.435082
+
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-10-21 15:04:39.036882
+
+[39] Log opened at 2024-10-21 15:04:39.084205
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] Log opened at 2024-10-21 15:04:39.168926
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[28] Log opened at 2024-10-21 15:04:39.176018
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-21 15:04:40.205376
+
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-10-21 15:04:40.778017
+
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-10-21 15:04:41.096661
+
+[24] Log opened at 2024-10-21 15:04:41.141982
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 15:04:42.473224
+
+[30] Log opened at 2024-10-21 15:05:45.958780
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-10-21 15:05:48.475278
+
+[30] Log opened at 2024-10-21 15:05:48.704122
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] Log opened at 2024-10-21 15:05:48.767026
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-10-21 15:05:49.373202
+
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-10-21 15:05:49.963089
+
+[31] Log opened at 2024-10-21 15:05:50.021241
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] Log opened at 2024-10-21 15:05:50.150369
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] Log opened at 2024-10-21 15:05:50.163064
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-21 15:05:51.274138
+
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-10-21 15:05:51.865420
+
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-10-21 15:05:52.202919
+
+[39] Log opened at 2024-10-21 15:05:52.247546
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-10-21 15:05:53.605864
+
+[37] Log opened at 2024-10-21 15:06:03.515937
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-21 15:06:05.989943
+
+[37] Log opened at 2024-10-21 15:06:06.197863
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] Log opened at 2024-10-21 15:06:06.259810
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-21 15:06:06.862291
+
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-10-21 15:06:07.419936
+
+[41] Log opened at 2024-10-21 15:06:07.467353
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] Log opened at 2024-10-21 15:06:07.563510
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] Log opened at 2024-10-21 15:06:07.571148
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-10-21 15:06:08.661143
+
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[41] Log closed at 2024-10-21 15:06:09.250168
+
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-10-21 15:06:09.588955
+
+[34] Log opened at 2024-10-21 15:06:09.634034
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-21 15:06:10.977407
+
+[39] Log opened at 2024-10-21 15:07:20.450456
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-10-21 15:07:23.062198
+
+[24] Log opened at 2024-10-21 15:07:23.406519
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] Log opened at 2024-10-21 15:07:23.484238
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 15:07:24.064866
+
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-10-21 15:07:24.836751
+
+[35] Log opened at 2024-10-21 15:07:24.898018
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] Log opened at 2024-10-21 15:07:24.990807
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] Log opened at 2024-10-21 15:07:25.011255
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-21 15:07:26.169158
+
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-10-21 15:07:26.788128
+
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-21 15:07:27.126921
+
+[24] Log opened at 2024-10-21 15:07:27.184383
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 15:07:28.610015
+
+[34] Log opened at 2024-10-21 15:07:39.830303
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-21 15:07:42.416679
+
+[34] Log opened at 2024-10-21 15:07:42.614405
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] Log opened at 2024-10-21 15:07:42.676342
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-21 15:07:43.276468
+
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-10-21 15:07:43.951220
+
+[43] Log opened at 2024-10-21 15:07:44.004033
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] Log opened at 2024-10-21 15:07:44.079243
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] Log opened at 2024-10-21 15:07:44.095974
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-21 15:07:45.151961
+
+[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-10-21 15:07:45.747755
+
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-10-21 15:07:46.110308
+
+[39] Log opened at 2024-10-21 15:07:46.159165
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-10-21 15:07:47.505340
+
+[24] Log opened at 2024-10-21 15:09:21.296294
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 15:09:23.793670
+
+[24] Log opened at 2024-10-21 15:09:24.045268
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] Log opened at 2024-10-21 15:09:24.111127
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 15:09:24.707340
+
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-21 15:09:25.285328
+
+[38] Log opened at 2024-10-21 15:09:25.334669
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] Log opened at 2024-10-21 15:09:25.489345
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] Log opened at 2024-10-21 15:09:25.498111
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-10-21 15:09:26.542862
+
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-10-21 15:09:27.133485
+
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-21 15:09:27.470724
+
+[42] Log opened at 2024-10-21 15:09:27.522091
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-21 15:09:28.965573
+
+[39] Log opened at 2024-10-21 15:09:53.672910
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-10-21 15:09:56.211989
+
+[39] Log opened at 2024-10-21 15:09:56.418522
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] Log opened at 2024-10-21 15:09:56.482439
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-10-21 15:09:57.083782
+
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-21 15:09:57.664329
+
+[44] Log opened at 2024-10-21 15:09:57.719836
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] Log opened at 2024-10-21 15:09:57.816368
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] Log opened at 2024-10-21 15:09:57.816818
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-10-21 15:09:58.880403
+
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-10-21 15:09:59.456654
+
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 15:09:59.797415
+
+[37] Log opened at 2024-10-21 15:09:59.845212
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-21 15:10:01.244054
+
+[42] Log opened at 2024-10-21 15:13:13.660495
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-21 15:13:16.362011
+
+[42] Log opened at 2024-10-21 15:13:16.592230
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] Log opened at 2024-10-21 15:13:16.654956
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-21 15:13:17.251315
+
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-10-21 15:13:17.827566
+
+[40] Log opened at 2024-10-21 15:13:17.974830
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] Log opened at 2024-10-21 15:13:18.091380
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] Log opened at 2024-10-21 15:13:18.134490
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-21 15:13:19.134402
+
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-10-21 15:13:19.736367
+
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-10-21 15:13:20.105395
+
+[45] Log opened at 2024-10-21 15:13:20.173269
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-10-21 15:13:21.477803
+
+[37] Log opened at 2024-10-21 15:19:09.820724
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2362
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- run -i 12
+[37] [Step Debug] ->
+
+[37] [Step Debug] ->
+
+[37] Log closed at 2024-10-21 15:19:11.721637
+
+[37] Log opened at 2024-10-21 15:19:11.933267
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2362
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[37] [Step Debug] ->
+
+[34] Log opened at 2024-10-21 15:19:12.004753
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 6
+[37] [Step Debug] <- run -i 12
+[37] [Step Debug] ->
+
+[37] Log closed at 2024-10-21 15:19:12.117495
+
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-10-21 15:19:12.635813
+
+[30] Log opened at 2024-10-21 15:19:12.766616
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2362
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[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
+[42] Log opened at 2024-10-21 15:19:12.883692
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[42] [Step Debug] ->
+
+[37] Log opened at 2024-10-21 15:19:12.889559
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[42] [Step Debug] ->
+
+[37] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[42] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[37] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[37] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2362
+[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2362
+[37] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[42] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[42] [Step Debug] ->
+
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[37] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[37] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[37] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2362
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2362
+[37] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[42] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[37] [Step Debug] ->
+
+[42] [Step Debug] <- run -i 14
+[37] [Step Debug] <- run -i 14
+[42] [Step Debug] ->
+
+[42] Log closed at 2024-10-21 15:19:13.516725
+
+[30] [Step Debug] ->
+
+[30] Log closed at 2024-10-21 15:19:13.866034
+
+[37] [Step Debug] ->
+
+[37] Log closed at 2024-10-21 15:19:13.990170
+
+[46] Log opened at 2024-10-21 15:19:14.046373
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2362
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- run -i 12
+[46] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- stack_get -i 13
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- property_get -i 14 -n "$datos_entrada" -d 0 -c 0
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- property_get -i 15 -n "$data" -d 0 -c 0
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- property_get -i 16 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- property_get -i 17 -n "$datos_papel" -d 0 -c 0
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- context_names -i 18 -d 0
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- context_get -i 19 -d 0 -c 0
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- step_over -i 20
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- stack_get -i 21
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- property_get -i 22 -n "$datos_entrada" -d 0 -c 0
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- property_get -i 23 -n "$data" -d 0 -c 0
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- property_get -i 24 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- property_get -i 25 -n "$datos_papel" -d 0 -c 0
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- context_names -i 26 -d 0
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- context_get -i 27 -d 0 -c 0
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- property_get -i 28 -n "$return_data[\"guardas\"]" -p 0 -d 0 -c 0
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- property_get -i 29 -n "$return_data[\"guardas\"][\"papel\"]" -p 0 -d 0 -c 0
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- run -i 30
+[46] [Step Debug] ->
+
+[46] Log closed at 2024-10-21 15:19:56.303814
+
+[40] Log opened at 2024-10-21 15:20:01.208045
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-10-21 15:20:03.803365
+
+[40] Log opened at 2024-10-21 15:20:04.078616
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] Log opened at 2024-10-21 15:20:04.157792
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-10-21 15:20:04.748778
+
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-10-21 15:20:05.387426
+
+[47] Log opened at 2024-10-21 15:20:05.446821
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] Log opened at 2024-10-21 15:20:05.591425
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] Log opened at 2024-10-21 15:20:05.605790
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 15:20:06.670011
+
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[47] Log closed at 2024-10-21 15:20:07.249489
+
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-10-21 15:20:07.595551
+
+[48] Log opened at 2024-10-21 15:20:07.644930
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] Log closed at 2024-10-21 15:20:09.065052
+
+[30] Log opened at 2024-10-21 15:20:23.879355
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-10-21 15:20:26.559959
+
+[30] Log opened at 2024-10-21 15:20:26.769184
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] Log opened at 2024-10-21 15:20:26.831716
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-10-21 15:20:27.437200
+
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 15:20:27.984160
+
+[46] Log opened at 2024-10-21 15:20:28.050597
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] Log opened at 2024-10-21 15:20:28.133473
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] Log opened at 2024-10-21 15:20:28.147556
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-21 15:20:29.212627
+
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-21 15:20:29.864276
+
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-10-21 15:20:30.208332
+
+[24] Log opened at 2024-10-21 15:20:30.257413
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 15:20:31.638943
+
+[46] Log opened at 2024-10-21 15:20:31.757379
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-21 15:20:32.907292
+
+[42] Log opened at 2024-10-21 15:21:58.655962
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-21 15:22:01.276029
+
+[42] Log opened at 2024-10-21 15:22:01.483272
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] Log opened at 2024-10-21 15:22:01.546278
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-21 15:22:02.141707
+
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-10-21 15:22:02.738325
+
+[37] Log opened at 2024-10-21 15:22:02.781723
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] Log opened at 2024-10-21 15:22:02.874343
+[49] Log opened at 2024-10-21 15:22:02.874686
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-10-21 15:22:03.909052
+
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-21 15:22:04.485486
+
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-10-21 15:22:04.831311
+
+[46] Log opened at 2024-10-21 15:22:04.876665
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-21 15:22:06.200465
+
+[37] Log opened at 2024-10-21 15:22:06.318371
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-21 15:22:19.135018
+
+[40] Log opened at 2024-10-21 15:23:09.573745
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-10-21 15:23:12.183323
+
+[40] Log opened at 2024-10-21 15:23:12.384772
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] Log opened at 2024-10-21 15:23:12.443900
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-10-21 15:23:13.040410
+
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-21 15:23:13.594341
+
+[48] Log opened at 2024-10-21 15:23:13.668188
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] Log opened at 2024-10-21 15:23:13.789553
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[50] Log opened at 2024-10-21 15:23:13.804187
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-10-21 15:23:14.837962
+
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] Log closed at 2024-10-21 15:23:15.404768
+
+[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[50] Log closed at 2024-10-21 15:23:15.748694
+
+[45] Log opened at 2024-10-21 15:23:15.797329
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-10-21 15:23:17.141887
+
+[40] Log opened at 2024-10-21 15:35:47.316553
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-10-21 15:35:49.880381
+
+[40] Log opened at 2024-10-21 15:35:50.079183
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] Log opened at 2024-10-21 15:35:50.135117
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-10-21 15:35:50.747660
+
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-10-21 15:35:51.322827
+
+[50] Log opened at 2024-10-21 15:35:51.376665
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] Log opened at 2024-10-21 15:35:51.481364
+[48] Log opened at 2024-10-21 15:35:51.481348
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] Log closed at 2024-10-21 15:35:52.506966
+
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[50] Log closed at 2024-10-21 15:35:53.084176
+
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-10-21 15:35:53.419948
+
+[42] Log opened at 2024-10-21 15:35:53.463464
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-21 15:35:54.936645
+
+[24] Log opened at 2024-10-21 15:36:12.744390
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 15:36:15.426821
+
+[24] Log opened at 2024-10-21 15:36:15.670947
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] Log opened at 2024-10-21 15:36:15.733165
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 15:36:16.337115
+
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-10-21 15:36:17.004371
+
+[40] Log opened at 2024-10-21 15:36:17.055432
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] Log opened at 2024-10-21 15:36:17.162030
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[52] Log opened at 2024-10-21 15:36:17.165617
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-10-21 15:36:18.239922
+
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-10-21 15:36:18.836559
+
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[52] Log closed at 2024-10-21 15:36:19.174052
+
+[48] Log opened at 2024-10-21 15:36:19.216560
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] Log closed at 2024-10-21 15:36:20.650397
+
+[42] Log opened at 2024-10-21 15:36:56.967385
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-21 15:36:59.585461
+
+[42] Log opened at 2024-10-21 15:36:59.763647
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] Log opened at 2024-10-21 15:36:59.822081
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-21 15:37:00.420938
+
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-21 15:37:01.032011
+
+[53] Log opened at 2024-10-21 15:37:01.080853
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] Log opened at 2024-10-21 15:37:01.173838
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] Log opened at 2024-10-21 15:37:01.180466
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-10-21 15:37:02.230333
+
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-21 15:37:02.774872
+
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-21 15:37:03.125127
+
+[24] Log opened at 2024-10-21 15:37:03.178560
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 15:37:04.640218
+
+[48] Log opened at 2024-10-21 15:42:52.678990
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[48] Log closed at 2024-10-21 15:42:53.620588
+
+[49] Log opened at 2024-10-21 15:42:53.901288
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-10-21 15:42:54.837949
+
+[54] Log opened at 2024-10-21 15:43:09.723480
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-10-21 15:43:11.053887
+
+[42] Log opened at 2024-10-21 15:43:11.353281
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-21 15:43:12.265426
+
+[51] Log opened at 2024-10-21 15:43:31.143771
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-10-21 15:43:32.880108
+
+[51] Log opened at 2024-10-21 15:43:33.029463
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] Log opened at 2024-10-21 15:43:33.097750
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-10-21 15:43:33.698103
+
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-21 15:43:34.296058
+
+[37] Log opened at 2024-10-21 15:43:34.346293
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] Log opened at 2024-10-21 15:43:34.459904
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] Log opened at 2024-10-21 15:43:34.464058
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 15:43:35.459245
+
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-21 15:43:36.029847
+
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-10-21 15:43:36.363129
+
+[52] Log opened at 2024-10-21 15:43:36.407751
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[52] Log closed at 2024-10-21 15:43:38.032067
+
+[42] Log opened at 2024-10-21 15:44:41.504546
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-21 15:44:43.199929
+
+[42] Log opened at 2024-10-21 15:44:43.396288
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] Log opened at 2024-10-21 15:44:43.457087
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-21 15:44:44.064429
+
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 15:44:44.631380
+
+[52] Log opened at 2024-10-21 15:44:44.698905
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] Log opened at 2024-10-21 15:44:44.796068
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] Log opened at 2024-10-21 15:44:44.808048
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-10-21 15:44:45.761831
+
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[52] Log closed at 2024-10-21 15:44:46.334963
+
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-10-21 15:44:46.684635
+
+[53] Log opened at 2024-10-21 15:44:46.725175
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-21 15:44:48.382919
+
+[49] Log opened at 2024-10-21 15:46:06.383621
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-10-21 15:46:08.120396
+
+[49] Log opened at 2024-10-21 15:46:08.339195
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] Log opened at 2024-10-21 15:46:08.402554
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-10-21 15:46:08.998432
+
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] Log closed at 2024-10-21 15:46:09.563677
+
+[54] Log opened at 2024-10-21 15:46:09.610557
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] Log opened at 2024-10-21 15:46:09.708901
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] Log opened at 2024-10-21 15:46:09.710926
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-10-21 15:46:10.711773
+
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-10-21 15:46:11.322162
+
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-21 15:46:11.654796
+
+[24] Log opened at 2024-10-21 15:46:11.709486
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 15:46:13.339050
+
+[53] Log opened at 2024-10-21 15:55:13.269461
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-21 15:55:15.047433
+
+[53] Log opened at 2024-10-21 15:55:15.246412
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] Log opened at 2024-10-21 15:55:15.307950
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-21 15:55:15.912340
+
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 15:55:16.518199
+
+[49] Log opened at 2024-10-21 15:55:16.587984
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] Log opened at 2024-10-21 15:55:16.721258
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] Log opened at 2024-10-21 15:55:16.728800
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-10-21 15:55:17.690717
+
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-10-21 15:55:18.302333
+
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-10-21 15:55:18.641764
+
+[57] Log opened at 2024-10-21 15:55:18.683844
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 15:55:20.208593
+
+[24] Log opened at 2024-10-21 15:59:36.159930
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 15:59:37.861673
+
+[24] Log opened at 2024-10-21 15:59:38.043807
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] Log opened at 2024-10-21 15:59:38.101680
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 15:59:38.704752
+
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-10-21 15:59:39.264749
+
+[53] Log opened at 2024-10-21 15:59:39.309155
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] Log opened at 2024-10-21 15:59:39.397131
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] Log opened at 2024-10-21 15:59:39.402079
+[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58'
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] Log closed at 2024-10-21 15:59:40.375641
+
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-21 15:59:40.944723
+
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] Log closed at 2024-10-21 15:59:41.298786
+
+[51] Log opened at 2024-10-21 15:59:41.351959
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-10-21 15:59:42.848944
+
+[57] Log opened at 2024-10-21 16:01:22.592166
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 16:01:24.336798
+
+[57] Log opened at 2024-10-21 16:01:24.544654
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] Log opened at 2024-10-21 16:01:24.605251
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 16:01:25.204908
+
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-10-21 16:01:25.757541
+
+[24] Log opened at 2024-10-21 16:01:25.828427
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] Log opened at 2024-10-21 16:01:25.940598
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] Log opened at 2024-10-21 16:01:25.940970
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log closed at 2024-10-21 16:01:26.889968
+
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 16:01:27.487181
+
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] Log closed at 2024-10-21 16:01:27.810265
+
+[42] Log opened at 2024-10-21 16:01:27.858943
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-21 16:01:29.447277
+
+[24] Log opened at 2024-10-21 16:01:29.512838
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] Log opened at 2024-10-21 16:01:29.512839
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 16:01:30.656698
+
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-21 16:01:31.070448
+
+[58] Log opened at 2024-10-21 16:01:43.268950
+[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58'
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] Log closed at 2024-10-21 16:01:44.387862
+
+[58] Log opened at 2024-10-21 16:01:47.298464
+[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58'
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] Log closed at 2024-10-21 16:01:48.438130
+
+[58] Log opened at 2024-10-21 16:01:48.454793
+[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58'
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] Log closed at 2024-10-21 16:01:53.288981
+
+[60] Log opened at 2024-10-21 16:03:47.302417
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-21 16:03:49.042009
+
+[60] Log opened at 2024-10-21 16:03:49.247138
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] Log opened at 2024-10-21 16:03:49.311397
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-21 16:03:49.901450
+
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log closed at 2024-10-21 16:03:50.498148
+
+[24] Log opened at 2024-10-21 16:03:50.556041
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] Log opened at 2024-10-21 16:03:50.705031
+[56] Log opened at 2024-10-21 16:03:50.705090
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-10-21 16:03:51.656597
+
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 16:03:52.238913
+
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[56] Log closed at 2024-10-21 16:03:52.578424
+
+[59] Log opened at 2024-10-21 16:03:52.624535
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log closed at 2024-10-21 16:03:54.145974
+
+[24] Log opened at 2024-10-21 16:03:54.178300
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] Log opened at 2024-10-21 16:03:54.178444
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 16:03:55.266816
+
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log closed at 2024-10-21 16:03:55.679342
+
+[51] Log opened at 2024-10-21 16:04:48.693296
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-10-21 16:04:50.396403
+
+[51] Log opened at 2024-10-21 16:04:50.605525
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] Log opened at 2024-10-21 16:04:50.667064
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-10-21 16:04:51.273633
+
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-21 16:04:51.844552
+
+[55] Log opened at 2024-10-21 16:04:51.893667
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] Log opened at 2024-10-21 16:04:51.980280
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] Log opened at 2024-10-21 16:04:51.980641
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] Log closed at 2024-10-21 16:04:53.030744
+
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-10-21 16:04:53.584704
+
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-10-21 16:04:53.928589
+
+[57] Log opened at 2024-10-21 16:04:53.978828
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 16:04:55.582155
+
+[55] Log opened at 2024-10-21 16:04:55.681627
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] Log opened at 2024-10-21 16:04:55.681630
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-10-21 16:04:56.821665
+
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 16:04:57.212881
+
+[59] Log opened at 2024-10-21 16:05:02.795948
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log closed at 2024-10-21 16:05:04.564788
+
+[59] Log opened at 2024-10-21 16:05:04.744781
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] Log opened at 2024-10-21 16:05:04.803958
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log closed at 2024-10-21 16:05:05.408600
+
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-10-21 16:05:06.024499
+
+[60] Log opened at 2024-10-21 16:05:06.072223
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] Log opened at 2024-10-21 16:05:06.152812
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[62] Log opened at 2024-10-21 16:05:06.153248
+[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62'
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] Log closed at 2024-10-21 16:05:07.159747
+
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-21 16:05:07.766807
+
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[62] Log closed at 2024-10-21 16:05:08.104117
+
+[58] Log opened at 2024-10-21 16:05:08.157323
+[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58'
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] Log closed at 2024-10-21 16:05:09.672379
+
+[60] Log opened at 2024-10-21 16:05:09.753149
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] Log opened at 2024-10-21 16:05:09.771672
+[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58'
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-21 16:05:10.916869
+
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] Log closed at 2024-10-21 16:05:11.310415
+
+[57] Log opened at 2024-10-21 16:09:19.880393
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 16:09:21.579945
+
+[57] Log opened at 2024-10-21 16:09:21.743409
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] Log opened at 2024-10-21 16:09:21.801837
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 16:09:22.399804
+
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 16:09:22.973738
+
+[63] Log opened at 2024-10-21 16:09:23.008866
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] Log opened at 2024-10-21 16:09:23.012042
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] Log opened at 2024-10-21 16:09:23.017913
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log closed at 2024-10-21 16:09:23.997464
+
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-21 16:09:24.575168
+
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-10-21 16:09:24.915025
+
+[63] Log opened at 2024-10-21 16:09:24.960731
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-21 16:09:26.513197
+
+[63] Log opened at 2024-10-21 16:09:26.542648
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[59] Log opened at 2024-10-21 16:09:26.543089
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-21 16:09:27.657692
+
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log closed at 2024-10-21 16:09:28.036961
+
+[58] Log opened at 2024-10-21 16:12:04.957300
+[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58'
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] Log closed at 2024-10-21 16:12:06.684031
+
+[58] Log opened at 2024-10-21 16:12:06.847954
+[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58'
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[64] Log opened at 2024-10-21 16:12:06.914532
+[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64'
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] Log closed at 2024-10-21 16:12:07.512982
+
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[64] Log closed at 2024-10-21 16:12:08.093583
+
+[57] Log opened at 2024-10-21 16:12:08.126047
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] Log opened at 2024-10-21 16:12:08.134001
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] Log opened at 2024-10-21 16:12:08.141067
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] Log closed at 2024-10-21 16:12:09.104694
+
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 16:12:09.740415
+
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-10-21 16:12:10.089317
+
+[57] Log opened at 2024-10-21 16:12:10.137269
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 16:12:11.667444
+
+[61] Log opened at 2024-10-21 16:12:11.701360
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] Log opened at 2024-10-21 16:12:11.701360
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] Log closed at 2024-10-21 16:12:12.796693
+
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 16:12:13.194089
+
+[59] Log opened at 2024-10-21 16:14:36.583107
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log closed at 2024-10-21 16:14:38.277338
+
+[59] Log opened at 2024-10-21 16:14:38.549013
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] Log opened at 2024-10-21 16:14:38.624663
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log closed at 2024-10-21 16:14:39.209945
+
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 16:14:39.823296
+
+[58] Log opened at 2024-10-21 16:14:39.875437
+[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58'
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] Log opened at 2024-10-21 16:14:39.984964
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[64] Log opened at 2024-10-21 16:14:39.992504
+[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64'
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-21 16:14:40.970071
+
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] Log closed at 2024-10-21 16:14:41.600988
+
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[64] Log closed at 2024-10-21 16:14:41.929696
+
+[58] Log opened at 2024-10-21 16:14:41.981194
+[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58'
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] Log closed at 2024-10-21 16:14:43.544558
+
+[63] Log opened at 2024-10-21 16:15:08.045413
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-21 16:15:09.753091
+
+[63] Log opened at 2024-10-21 16:15:09.966990
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] Log opened at 2024-10-21 16:15:10.033889
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-21 16:15:10.630174
+
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-21 16:15:11.289773
+
+[59] Log opened at 2024-10-21 16:15:11.337295
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] Log opened at 2024-10-21 16:15:11.431147
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] Log opened at 2024-10-21 16:15:11.434397
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-21 16:15:12.415288
+
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log closed at 2024-10-21 16:15:13.008076
+
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-21 16:15:13.350800
+
+[24] Log opened at 2024-10-21 16:15:13.393814
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 16:15:14.931325
+
+[59] Log opened at 2024-10-21 16:15:14.983390
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] Log opened at 2024-10-21 16:15:14.985548
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log closed at 2024-10-21 16:15:16.121834
+
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 16:15:16.518964
+
+[57] Log opened at 2024-10-21 16:15:39.528955
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 16:15:41.196187
+
+[57] Log opened at 2024-10-21 16:15:41.412577
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] Log opened at 2024-10-21 16:15:41.481777
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 16:15:42.070112
+
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-21 16:15:42.711617
+
+[67] Log opened at 2024-10-21 16:15:42.759126
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] Log opened at 2024-10-21 16:15:42.877994
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] Log opened at 2024-10-21 16:15:42.886511
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-21 16:15:43.871461
+
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[67] Log closed at 2024-10-21 16:15:44.482193
+
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-21 16:15:44.823822
+
+[66] Log opened at 2024-10-21 16:15:44.865505
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-21 16:15:46.431119
+
+[24] Log opened at 2024-10-21 16:16:12.156211
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[58] Log opened at 2024-10-21 16:16:12.156211
+[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58'
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 16:16:13.357634
+
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] Log closed at 2024-10-21 16:16:13.747154
+
+[68] Log opened at 2024-10-21 16:17:00.694756
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] Log closed at 2024-10-21 16:17:02.427822
+
+[68] Log opened at 2024-10-21 16:17:02.629274
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] Log opened at 2024-10-21 16:17:02.686040
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] Log closed at 2024-10-21 16:17:03.291232
+
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-21 16:17:03.908190
+
+[57] Log opened at 2024-10-21 16:17:03.960716
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] Log opened at 2024-10-21 16:17:04.075778
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] Log opened at 2024-10-21 16:17:04.078503
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-21 16:17:05.081933
+
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 16:17:05.765536
+
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-21 16:17:06.128128
+
+[67] Log opened at 2024-10-21 16:17:06.176888
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[67] Log closed at 2024-10-21 16:17:07.648985
+
+[24] Log opened at 2024-10-21 16:18:16.726543
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] Log opened at 2024-10-21 16:18:16.726543
+[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58'
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[58] Log closed at 2024-10-21 16:18:17.886740
+
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 16:18:18.364868
+
+[69] Log opened at 2024-10-21 16:19:06.460741
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[69] Log closed at 2024-10-21 16:19:08.168192
+
+[69] Log opened at 2024-10-21 16:19:08.399530
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] Log opened at 2024-10-21 16:19:08.463935
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[69] Log closed at 2024-10-21 16:19:09.061377
+
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-21 16:19:09.701314
+
+[57] Log opened at 2024-10-21 16:19:09.750057
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] Log opened at 2024-10-21 16:19:09.880336
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] Log opened at 2024-10-21 16:19:09.881231
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] Log closed at 2024-10-21 16:19:10.875200
+
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 16:19:11.443270
+
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-21 16:19:11.777321
+
+[65] Log opened at 2024-10-21 16:19:11.826600
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-21 16:19:13.382144
+
+[65] Log opened at 2024-10-21 16:19:17.169363
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[67] Log opened at 2024-10-21 16:19:17.170536
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[67] Log closed at 2024-10-21 16:19:19.155838
+
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-21 16:19:19.948202
+
+[70] Log opened at 2024-10-21 16:23:12.117190
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] Log closed at 2024-10-21 16:23:13.107456
+
+[69] Log opened at 2024-10-21 16:23:13.128398
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[69] Log closed at 2024-10-21 16:23:14.079316
+
+[69] Log opened at 2024-10-21 16:23:14.300168
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[69] Log closed at 2024-10-21 16:23:14.946160
+
+[57] Log opened at 2024-10-21 16:23:15.275313
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 16:23:16.237098
+
+[57] Log opened at 2024-10-21 16:23:17.542888
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 16:23:18.976928
+
+[57] Log opened at 2024-10-21 16:23:18.991214
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 16:23:20.705379
+
+[57] Log opened at 2024-10-21 16:23:20.906071
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] Log opened at 2024-10-21 16:23:20.909419
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 16:23:21.561842
+
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-21 16:23:22.063950
+
+[57] Log opened at 2024-10-21 16:23:22.161914
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] Log opened at 2024-10-21 16:23:22.279486
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] Log opened at 2024-10-21 16:23:22.315660
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-21 16:23:23.262943
+
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 16:23:23.904385
+
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-21 16:23:24.248161
+
+[57] Log opened at 2024-10-21 16:23:24.303417
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 16:23:25.822675
+
+[65] Log opened at 2024-10-21 16:23:25.859096
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] Log opened at 2024-10-21 16:23:25.858735
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 16:23:26.951311
+
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-21 16:23:27.367737
+
+[24] Log opened at 2024-10-21 16:25:05.648423
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 16:25:07.371313
+
+[24] Log opened at 2024-10-21 16:25:07.587810
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[69] Log opened at 2024-10-21 16:25:07.647867
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 16:25:08.244504
+
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[69] Log closed at 2024-10-21 16:25:08.867438
+
+[70] Log opened at 2024-10-21 16:25:08.955129
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] Log opened at 2024-10-21 16:25:09.145413
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] Log opened at 2024-10-21 16:25:09.150244
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] Log closed at 2024-10-21 16:25:10.102337
+
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] Log closed at 2024-10-21 16:25:10.683761
+
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[61] Log closed at 2024-10-21 16:25:11.025393
+
+[70] Log opened at 2024-10-21 16:25:11.077582
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] Log closed at 2024-10-21 16:25:12.659830
+
+[68] Log opened at 2024-10-21 16:25:12.704594
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] Log opened at 2024-10-21 16:25:12.704592
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] Log closed at 2024-10-21 16:25:13.814258
+
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] Log closed at 2024-10-21 16:25:14.244847
+
+[65] Log opened at 2024-10-21 16:26:21.172292
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-21 16:26:22.914282
+
+[65] Log opened at 2024-10-21 16:26:23.114119
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] Log opened at 2024-10-21 16:26:23.171722
+[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72'
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-21 16:26:23.768642
+
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] Log closed at 2024-10-21 16:26:24.336654
+
+[69] Log opened at 2024-10-21 16:26:24.634647
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] Log opened at 2024-10-21 16:26:24.682890
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[60] Log opened at 2024-10-21 16:26:24.682928
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-21 16:26:25.650287
+
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[69] Log closed at 2024-10-21 16:26:26.258741
+
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 16:26:26.599736
+
+[69] Log opened at 2024-10-21 16:26:26.654156
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[69] Log closed at 2024-10-21 16:26:28.322789
+
+[70] Log opened at 2024-10-21 16:26:35.102223
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] Log opened at 2024-10-21 16:26:35.102771
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] Log closed at 2024-10-21 16:26:36.225555
+
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] Log closed at 2024-10-21 16:26:36.616630
+
+[73] Log opened at 2024-10-21 16:26:50.580555
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-21 16:26:52.423859
+
+[73] Log opened at 2024-10-21 16:26:52.666801
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] Log opened at 2024-10-21 16:26:52.732287
+[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71'
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-21 16:26:53.329526
+
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] Log closed at 2024-10-21 16:26:53.941188
+
+[24] Log opened at 2024-10-21 16:26:54.002940
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] Log opened at 2024-10-21 16:26:54.138182
+[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72'
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] Log opened at 2024-10-21 16:26:54.141142
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] Log closed at 2024-10-21 16:26:55.143550
+
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 16:26:55.754023
+
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-21 16:26:56.098084
+
+[71] Log opened at 2024-10-21 16:26:56.151353
+[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71'
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] Log closed at 2024-10-21 16:26:57.746010
+
+[24] Log opened at 2024-10-21 16:26:57.796002
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] Log opened at 2024-10-21 16:26:57.796002
+[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71'
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-21 16:26:58.923531
+
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] Log closed at 2024-10-21 16:26:59.323203
+
+[57] Log opened at 2024-10-21 16:27:42.897097
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 16:27:44.593039
+
+[57] Log opened at 2024-10-21 16:27:44.813564
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] Log opened at 2024-10-21 16:27:44.879969
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 16:27:45.478312
+
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-21 16:27:46.080043
+
+[72] Log opened at 2024-10-21 16:27:46.161399
+[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72'
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] Log opened at 2024-10-21 16:27:46.330417
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] Log opened at 2024-10-21 16:27:46.340964
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-21 16:27:47.281121
+
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] Log closed at 2024-10-21 16:27:47.909658
+
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-21 16:27:48.252856
+
+[65] Log opened at 2024-10-21 16:27:48.302276
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-21 16:27:49.880064
+
+[72] Log opened at 2024-10-21 16:27:49.910416
+[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72'
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] Log opened at 2024-10-21 16:27:49.910913
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] Log opened at 2024-10-21 16:27:49.973392
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[72] Log closed at 2024-10-21 16:27:51.032597
+
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-21 16:27:51.435297
+
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-21 16:28:05.315559
+
+[68] Log opened at 2024-10-21 16:29:42.195034
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] Log closed at 2024-10-21 16:29:43.964697
+
+[70] Log opened at 2024-10-21 16:29:44.208477
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] Log opened at 2024-10-21 16:29:44.276888
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] Log closed at 2024-10-21 16:29:44.868477
+
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 16:29:45.484577
+
+[75] Log opened at 2024-10-21 16:29:45.555176
+[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75'
+[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] Log opened at 2024-10-21 16:29:45.653735
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] Log opened at 2024-10-21 16:29:45.658059
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-21 16:29:46.674979
+
+[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[75] Log closed at 2024-10-21 16:29:47.290883
+
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] Log closed at 2024-10-21 16:29:47.633111
+
+[57] Log opened at 2024-10-21 16:29:47.683703
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 16:29:49.274713
+
+[75] Log opened at 2024-10-21 16:29:49.311141
+[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75'
+[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] Log opened at 2024-10-21 16:29:49.311615
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] Log opened at 2024-10-21 16:29:49.368264
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] Log opened at 2024-10-21 16:29:49.390061
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 16:29:50.484402
+
+[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[75] Log closed at 2024-10-21 16:29:50.904423
+
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] Log closed at 2024-10-21 16:30:04.903681
+
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-21 16:30:20.531149
+
+[74] Log opened at 2024-10-21 16:31:34.809285
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-21 16:31:36.569466
+
+[74] Log opened at 2024-10-21 16:31:36.814685
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] Log opened at 2024-10-21 16:31:36.879509
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-21 16:31:37.478261
+
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] Log closed at 2024-10-21 16:31:38.045126
+
+[76] Log opened at 2024-10-21 16:31:38.110921
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] Log opened at 2024-10-21 16:31:38.224554
+[71] Log opened at 2024-10-21 16:31:38.224554
+[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71'
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 16:31:39.201632
+
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 16:31:39.797234
+
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] Log closed at 2024-10-21 16:31:40.150270
+
+[60] Log opened at 2024-10-21 16:31:40.197299
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-21 16:31:41.710664
+
+[76] Log opened at 2024-10-21 16:31:41.744470
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] Log opened at 2024-10-21 16:31:41.744534
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] Log opened at 2024-10-21 16:31:41.808977
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] Log opened at 2024-10-21 16:31:41.827211
+[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71'
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-21 16:31:42.950523
+
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-21 16:31:56.362290
+
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] Log closed at 2024-10-21 16:32:11.374918
+
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 16:32:11.769192
+
+[73] Log opened at 2024-10-21 16:32:21.822839
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-21 16:32:23.621819
+
+[73] Log opened at 2024-10-21 16:32:23.854487
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] Log opened at 2024-10-21 16:32:23.915386
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-21 16:32:24.527765
+
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-21 16:32:25.084493
+
+[60] Log opened at 2024-10-21 16:32:25.141343
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[77] Log opened at 2024-10-21 16:32:25.267399
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] Log opened at 2024-10-21 16:32:25.271078
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[77] Log closed at 2024-10-21 16:32:26.239236
+
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-21 16:32:26.876073
+
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-21 16:32:27.220945
+
+[65] Log opened at 2024-10-21 16:32:27.272911
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-21 16:32:28.853943
+
+[60] Log opened at 2024-10-21 16:32:28.889572
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] Log opened at 2024-10-21 16:32:28.889854
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[77] Log opened at 2024-10-21 16:32:28.956248
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] Log opened at 2024-10-21 16:32:28.997684
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-21 16:32:30.054479
+
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-21 16:32:30.458253
+
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[77] Log closed at 2024-10-21 16:32:45.385953
+
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-21 16:32:59.762290
+
+[70] Log opened at 2024-10-21 16:33:21.898317
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] Log closed at 2024-10-21 16:33:23.618535
+
+[70] Log opened at 2024-10-21 16:33:23.850238
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] Log opened at 2024-10-21 16:33:23.907365
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] Log closed at 2024-10-21 16:33:24.510210
+
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-21 16:33:25.063343
+
+[68] Log opened at 2024-10-21 16:33:25.131868
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] Log opened at 2024-10-21 16:33:25.248735
+[65] Log opened at 2024-10-21 16:33:25.248736
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-21 16:33:26.271520
+
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] Log closed at 2024-10-21 16:33:26.883942
+
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-21 16:33:27.220782
+
+[60] Log opened at 2024-10-21 16:33:27.292153
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-21 16:33:28.859510
+
+[68] Log opened at 2024-10-21 16:33:28.896447
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] Log opened at 2024-10-21 16:33:28.897558
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] Log opened at 2024-10-21 16:33:28.967669
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] Log opened at 2024-10-21 16:33:28.993318
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-21 16:33:30.032788
+
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[68] Log closed at 2024-10-21 16:33:30.473063
+
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-21 16:33:46.082515
+
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-21 16:34:03.330917
+
+[71] Log opened at 2024-10-21 16:34:26.517460
+[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71'
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] Log closed at 2024-10-21 16:34:28.318248
+
+[71] Log opened at 2024-10-21 16:34:28.566791
+[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71'
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] Log opened at 2024-10-21 16:34:28.622983
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] Log closed at 2024-10-21 16:34:29.228122
+
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-21 16:34:29.776075
+
+[79] Log opened at 2024-10-21 16:34:29.845657
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] Log opened at 2024-10-21 16:34:29.966943
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] Log opened at 2024-10-21 16:34:29.969206
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] Log closed at 2024-10-21 16:34:30.943434
+
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-21 16:34:31.558918
+
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 16:34:31.902692
+
+[78] Log opened at 2024-10-21 16:34:32.004548
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-21 16:34:33.836918
+
+[79] Log opened at 2024-10-21 16:34:33.876715
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] Log opened at 2024-10-21 16:34:33.877490
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] Log opened at 2024-10-21 16:34:33.943782
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] Log opened at 2024-10-21 16:34:33.971126
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-21 16:34:35.052831
+
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[70] Log closed at 2024-10-21 16:34:49.912752
+
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 16:35:05.845637
+
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-21 16:35:06.297998
+
+[73] Log opened at 2024-10-21 16:35:20.743547
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-21 16:35:22.474724
+
+[73] Log opened at 2024-10-21 16:35:22.789819
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[80] Log opened at 2024-10-21 16:35:22.871289
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-21 16:35:23.451930
+
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[80] Log closed at 2024-10-21 16:35:24.097873
+
+[60] Log opened at 2024-10-21 16:35:24.161166
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] Log opened at 2024-10-21 16:35:24.305704
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] Log opened at 2024-10-21 16:35:24.311154
+[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71'
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-21 16:35:25.320677
+
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] Log closed at 2024-10-21 16:35:25.644755
+
+[80] Log opened at 2024-10-21 16:35:25.705326
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-21 16:35:26.499981
+
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[80] Log closed at 2024-10-21 16:35:27.350843
+
+[60] Log opened at 2024-10-21 16:35:27.401496
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[80] Log opened at 2024-10-21 16:35:27.403249
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] Log opened at 2024-10-21 16:35:27.462357
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-21 16:35:28.600725
+
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[80] Log closed at 2024-10-21 16:35:29.047086
+
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-21 16:35:44.326941
+
+[76] Log opened at 2024-10-21 16:36:12.575410
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 16:36:26.487782
+
+[65] Log opened at 2024-10-21 16:36:42.697374
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-21 16:36:44.466043
+
+[65] Log opened at 2024-10-21 16:36:44.715123
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[81] Log opened at 2024-10-21 16:36:44.779433
+[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81'
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-21 16:36:45.376014
+
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[81] Log closed at 2024-10-21 16:36:46.033634
+
+[60] Log opened at 2024-10-21 16:36:46.108582
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] Log opened at 2024-10-21 16:36:46.241976
+[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71'
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] Log opened at 2024-10-21 16:36:46.247018
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] Log closed at 2024-10-21 16:36:47.271395
+
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-21 16:36:47.877618
+
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-21 16:36:48.255297
+
+[81] Log opened at 2024-10-21 16:36:48.302627
+[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81'
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[81] Log closed at 2024-10-21 16:36:49.880408
+
+[60] Log opened at 2024-10-21 16:36:49.918304
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[81] Log opened at 2024-10-21 16:36:49.918672
+[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81'
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] Log opened at 2024-10-21 16:36:49.992049
+[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71'
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] Log opened at 2024-10-21 16:36:50.017576
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[81] Log closed at 2024-10-21 16:36:51.058747
+
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-21 16:36:51.467073
+
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] Log closed at 2024-10-21 16:37:07.620995
+
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-21 16:37:23.472029
+
+[76] Log opened at 2024-10-21 16:38:28.070793
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 16:38:29.844775
+
+[76] Log opened at 2024-10-21 16:38:30.071887
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] Log opened at 2024-10-21 16:38:30.138779
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 16:38:30.737311
+
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-21 16:38:31.356916
+
+[78] Log opened at 2024-10-21 16:38:31.419712
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[81] Log opened at 2024-10-21 16:38:31.534009
+[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81'
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] Log opened at 2024-10-21 16:38:31.538224
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[81] Log closed at 2024-10-21 16:38:32.551197
+
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-21 16:38:33.158202
+
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-21 16:38:33.514668
+
+[79] Log opened at 2024-10-21 16:38:33.571859
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-21 16:38:35.143472
+
+[78] Log opened at 2024-10-21 16:38:35.196832
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] Log opened at 2024-10-21 16:38:35.197066
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[81] Log opened at 2024-10-21 16:38:35.250302
+[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81'
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] Log opened at 2024-10-21 16:38:35.280035
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-21 16:38:36.340387
+
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-21 16:38:36.748456
+
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[81] Log closed at 2024-10-21 16:38:56.800567
+
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-21 16:39:12.164247
+
+[74] Log opened at 2024-10-21 16:40:04.825440
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-21 16:40:06.504258
+
+[74] Log opened at 2024-10-21 16:40:06.738179
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[82] Log opened at 2024-10-21 16:40:06.797544
+[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82'
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-21 16:40:07.395633
+
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[82] Log closed at 2024-10-21 16:40:08.001610
+
+[83] Log opened at 2024-10-21 16:40:08.067541
+[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83'
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log opened at 2024-10-21 16:40:08.303027
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] Log opened at 2024-10-21 16:40:08.305926
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-21 16:40:09.277365
+
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] Log closed at 2024-10-21 16:40:09.938908
+
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 16:40:10.277928
+
+[82] Log opened at 2024-10-21 16:40:10.328651
+[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82'
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[82] Log closed at 2024-10-21 16:40:11.945362
+
+[83] Log opened at 2024-10-21 16:40:11.982641
+[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83'
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[82] Log opened at 2024-10-21 16:40:11.983159
+[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82'
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] Log opened at 2024-10-21 16:40:12.048442
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] Log opened at 2024-10-21 16:40:12.076164
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] Log closed at 2024-10-21 16:40:13.143355
+
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[82] Log closed at 2024-10-21 16:40:13.598862
+
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-21 16:40:29.939726
+
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 16:40:45.585802
+
+[71] Log opened at 2024-10-21 16:41:14.741195
+[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71'
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] Log closed at 2024-10-21 16:41:16.547162
+
+[71] Log opened at 2024-10-21 16:41:16.807829
+[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71'
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[84] Log opened at 2024-10-21 16:41:16.880369
+[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84'
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] Log closed at 2024-10-21 16:41:17.463865
+
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[84] Log closed at 2024-10-21 16:41:18.155128
+
+[73] Log opened at 2024-10-21 16:41:18.220904
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] Log opened at 2024-10-21 16:41:18.377950
+[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83'
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] Log opened at 2024-10-21 16:41:18.397478
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] Log closed at 2024-10-21 16:41:19.419573
+
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-21 16:41:20.029005
+
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-21 16:41:20.380420
+
+[84] Log opened at 2024-10-21 16:41:20.436193
+[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84'
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[84] Log closed at 2024-10-21 16:41:21.948112
+
+[73] Log opened at 2024-10-21 16:41:21.994153
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[84] Log opened at 2024-10-21 16:41:21.994152
+[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84'
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] Log opened at 2024-10-21 16:41:22.062370
+[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83'
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] Log opened at 2024-10-21 16:41:22.092711
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-21 16:41:23.096539
+
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[84] Log closed at 2024-10-21 16:41:23.535505
+
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] Log closed at 2024-10-21 16:41:38.561640
+
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-21 16:41:52.283195
+
+[76] Log opened at 2024-10-21 16:43:35.557599
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 16:43:37.378413
+
+[76] Log opened at 2024-10-21 16:43:37.662137
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] Log opened at 2024-10-21 16:43:37.751428
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 16:43:38.327389
+
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] Log closed at 2024-10-21 16:43:39.004841
+
+[74] Log opened at 2024-10-21 16:43:39.062278
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] Log opened at 2024-10-21 16:43:39.270481
+[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71'
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] Log opened at 2024-10-21 16:43:39.290563
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] Log closed at 2024-10-21 16:43:40.290158
+
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-21 16:43:40.932535
+
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-21 16:43:41.438205
+
+[73] Log opened at 2024-10-21 16:43:41.503342
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-21 16:43:43.147340
+
+[74] Log opened at 2024-10-21 16:43:43.180688
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] Log opened at 2024-10-21 16:43:43.181042
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] Log opened at 2024-10-21 16:43:43.233947
+[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71'
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] Log opened at 2024-10-21 16:43:43.263656
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-21 16:43:44.399147
+
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-21 16:43:44.857499
+
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] Log closed at 2024-10-21 16:43:59.653704
+
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-21 16:44:16.259390
+
+[83] Log opened at 2024-10-21 16:45:08.386225
+[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83'
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] Log closed at 2024-10-21 16:45:10.093845
+
+[83] Log opened at 2024-10-21 16:45:10.296196
+[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83'
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] Log opened at 2024-10-21 16:45:10.309485
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] Log closed at 2024-10-21 16:45:10.963646
+
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-21 16:45:11.515948
+
+[79] Log opened at 2024-10-21 16:45:11.595047
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] Log opened at 2024-10-21 16:45:11.749200
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[86] Log opened at 2024-10-21 16:45:11.780953
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-21 16:45:12.829015
+
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[86] Log closed at 2024-10-21 16:45:13.186129
+
+[78] Log opened at 2024-10-21 16:45:13.243495
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-21 16:45:13.866975
+
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-21 16:45:14.847390
+
+[78] Log opened at 2024-10-21 16:45:14.888854
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] Log opened at 2024-10-21 16:45:14.889817
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[86] Log opened at 2024-10-21 16:45:14.956570
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] Log opened at 2024-10-21 16:45:14.975245
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-21 16:45:16.101915
+
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-21 16:45:16.521635
+
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[86] Log closed at 2024-10-21 16:45:31.586398
+
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 16:45:46.106178
+
+[73] Log opened at 2024-10-21 16:47:33.129858
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-21 16:47:34.982806
+
+[73] Log opened at 2024-10-21 16:47:35.186680
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] Log opened at 2024-10-21 16:47:35.259000
+[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71'
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-21 16:47:35.845918
+
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] Log closed at 2024-10-21 16:47:37.767318
+
+[65] Log opened at 2024-10-21 16:47:37.831439
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] Log opened at 2024-10-21 16:47:38.015891
+[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83'
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log opened at 2024-10-21 16:47:38.034406
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] Log closed at 2024-10-21 16:47:38.980110
+
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-21 16:47:40.125275
+
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-21 16:47:40.465699
+
+[85] Log opened at 2024-10-21 16:47:40.521574
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] Log closed at 2024-10-21 16:47:42.136953
+
+[85] Log opened at 2024-10-21 16:47:42.169471
+[65] Log opened at 2024-10-21 16:47:42.169468
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] Log opened at 2024-10-21 16:47:42.234533
+[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83'
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] Log opened at 2024-10-21 16:47:42.260169
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-21 16:47:43.326048
+
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] Log closed at 2024-10-21 16:47:43.737973
+
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] Log closed at 2024-10-21 16:47:59.277851
+
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-21 16:48:13.809501
+
+[76] Log opened at 2024-10-21 16:49:20.587093
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 16:49:22.326705
+
+[76] Log opened at 2024-10-21 16:49:22.514009
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] Log opened at 2024-10-21 16:49:22.608048
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 16:49:23.180482
+
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-21 16:49:23.790567
+
+[87] Log opened at 2024-10-21 16:49:23.862602
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] Log opened at 2024-10-21 16:49:24.021573
+[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71'
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] Log opened at 2024-10-21 16:49:24.028733
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] Log closed at 2024-10-21 16:49:25.066725
+
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 16:49:25.684499
+
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-21 16:49:26.038659
+
+[73] Log opened at 2024-10-21 16:49:26.088700
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-21 16:49:27.836787
+
+[85] Log opened at 2024-10-21 16:49:33.077134
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] Log opened at 2024-10-21 16:49:33.084037
+[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83'
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] Log opened at 2024-10-21 16:49:33.106368
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[86] Log opened at 2024-10-21 16:49:33.144945
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] Log closed at 2024-10-21 16:49:34.299561
+
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] Log closed at 2024-10-21 16:49:34.762792
+
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-21 16:49:49.756803
+
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[86] Log closed at 2024-10-21 16:50:03.022969
+
+[87] Log opened at 2024-10-21 16:52:03.379028
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 16:52:05.090046
+
+[87] Log opened at 2024-10-21 16:52:05.373903
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] Log opened at 2024-10-21 16:52:05.456377
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 16:52:06.031695
+
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] Log closed at 2024-10-21 16:52:06.689373
+
+[74] Log opened at 2024-10-21 16:52:06.752823
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] Log opened at 2024-10-21 16:52:06.895811
+[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83'
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] Log opened at 2024-10-21 16:52:06.909531
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] Log closed at 2024-10-21 16:52:07.880760
+
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-21 16:52:08.478731
+
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-21 16:52:08.820054
+
+[85] Log opened at 2024-10-21 16:52:08.870183
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] Log closed at 2024-10-21 16:52:10.430915
+
+[74] Log opened at 2024-10-21 16:52:10.466446
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] Log opened at 2024-10-21 16:52:10.467440
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] Log opened at 2024-10-21 16:52:10.524604
+[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83'
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] Log opened at 2024-10-21 16:52:10.560074
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] Log closed at 2024-10-21 16:52:11.597393
+
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-21 16:52:12.013363
+
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[83] Log closed at 2024-10-21 16:52:28.760098
+
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-21 16:52:45.369931
+
+[76] Log opened at 2024-10-21 16:52:51.474608
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 16:53:08.684669
+
+[71] Log opened at 2024-10-21 16:53:39.257667
+[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71'
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] Log closed at 2024-10-21 16:53:41.084808
+
+[71] Log opened at 2024-10-21 16:53:41.316650
+[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71'
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] Log opened at 2024-10-21 16:53:41.392858
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] Log closed at 2024-10-21 16:53:41.972555
+
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] Log closed at 2024-10-21 16:53:42.645719
+
+[89] Log opened at 2024-10-21 16:53:42.704560
+[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89'
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] Log opened at 2024-10-21 16:53:42.862074
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] Log opened at 2024-10-21 16:53:42.863126
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-21 16:53:43.912978
+
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] Log closed at 2024-10-21 16:53:44.482748
+
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 16:53:44.818633
+
+[78] Log opened at 2024-10-21 16:53:44.867453
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-21 16:53:46.581848
+
+[89] Log opened at 2024-10-21 16:53:46.635059
+[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89'
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] Log opened at 2024-10-21 16:53:46.635411
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] Log opened at 2024-10-21 16:53:46.729522
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] Log closed at 2024-10-21 16:53:47.820165
+
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-21 16:53:48.215977
+
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-21 16:54:03.369462
+
+[73] Log opened at 2024-10-21 16:54:12.523704
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] Log opened at 2024-10-21 16:54:12.641196
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-21 16:54:29.780394
+
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 16:54:46.494708
+
+[65] Log opened at 2024-10-21 16:54:58.857854
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-21 16:55:14.921904
+
+[90] Log opened at 2024-10-21 16:55:51.830659
+[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90'
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[90] Log closed at 2024-10-21 16:56:08.167727
+
+[71] Log opened at 2024-10-21 16:56:16.237187
+[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71'
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] Log closed at 2024-10-21 16:56:32.708453
+
+[85] Log opened at 2024-10-21 16:57:19.843754
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] Log closed at 2024-10-21 16:57:39.256903
+
+[87] Log opened at 2024-10-21 16:58:14.887162
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 16:58:16.623212
+
+[89] Log opened at 2024-10-21 16:58:16.835901
+[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89'
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] Log opened at 2024-10-21 16:58:16.837811
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] Log closed at 2024-10-21 16:58:17.501473
+
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 16:58:18.023462
+
+[74] Log opened at 2024-10-21 16:58:18.078558
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] Log opened at 2024-10-21 16:58:18.217871
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] Log opened at 2024-10-21 16:58:18.233727
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-21 16:58:19.307279
+
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-21 16:58:20.124474
+
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 16:58:20.458136
+
+[78] Log opened at 2024-10-21 16:58:20.515184
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-21 16:58:22.121532
+
+[78] Log opened at 2024-10-21 16:58:22.232502
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] Log opened at 2024-10-21 16:58:22.265161
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-21 16:58:39.892204
+
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-21 16:58:54.882815
+
+[90] Log opened at 2024-10-21 16:59:17.912575
+[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90'
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[90] Log closed at 2024-10-21 16:59:32.877517
+
+[71] Log opened at 2024-10-21 17:01:01.118476
+[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71'
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[71] Log closed at 2024-10-21 17:01:18.987713
+
+[85] Log opened at 2024-10-21 17:01:58.471728
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] Log closed at 2024-10-21 17:01:59.615701
+
+[91] Log opened at 2024-10-21 17:02:04.799526
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] Log closed at 2024-10-21 17:02:06.047984
+
+[91] Log opened at 2024-10-21 17:02:11.025998
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] Log closed at 2024-10-21 17:02:27.964446
+
+[89] Log opened at 2024-10-21 17:03:34.675545
+[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89'
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] Log closed at 2024-10-21 17:03:36.393512
+
+[89] Log opened at 2024-10-21 17:03:36.651752
+[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89'
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] Log opened at 2024-10-21 17:03:36.754203
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] Log closed at 2024-10-21 17:03:37.307812
+
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-21 17:03:38.027961
+
+[87] Log opened at 2024-10-21 17:03:38.097392
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] Log opened at 2024-10-21 17:03:38.228339
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[90] Log opened at 2024-10-21 17:03:38.235771
+[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90'
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 17:03:39.276470
+
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 17:03:39.902767
+
+[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[90] Log closed at 2024-10-21 17:03:40.241560
+
+[74] Log opened at 2024-10-21 17:03:40.308982
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-21 17:03:42.060517
+
+[87] Log opened at 2024-10-21 17:03:42.111245
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 17:03:43.236709
+
+[91] Log opened at 2024-10-21 17:06:17.325934
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] Log closed at 2024-10-21 17:06:19.143586
+
+[91] Log opened at 2024-10-21 17:06:19.422906
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] Log opened at 2024-10-21 17:06:19.512761
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] Log closed at 2024-10-21 17:06:20.078391
+
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-21 17:06:20.739637
+
+[78] Log opened at 2024-10-21 17:06:20.827430
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] Log opened at 2024-10-21 17:06:20.922017
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] Log opened at 2024-10-21 17:06:20.943217
+[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89'
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 17:06:21.911739
+
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-21 17:06:22.560340
+
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] Log closed at 2024-10-21 17:06:22.909658
+
+[73] Log opened at 2024-10-21 17:06:22.958130
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-21 17:06:24.430078
+
+[78] Log opened at 2024-10-21 17:06:24.463269
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] Log opened at 2024-10-21 17:06:24.524618
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] Log opened at 2024-10-21 17:06:24.543363
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] Log opened at 2024-10-21 17:06:24.577596
+[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89'
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-21 17:06:25.600749
+
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-21 17:06:39.292391
+
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 17:06:54.687603
+
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] Log closed at 2024-10-21 17:07:11.439031
+
+[87] Log opened at 2024-10-21 17:07:27.989470
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 17:07:29.780751
+
+[87] Log opened at 2024-10-21 17:07:30.007592
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[93] Log opened at 2024-10-21 17:07:30.069620
+[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93'
+[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 17:07:30.677889
+
+[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[93] Log closed at 2024-10-21 17:07:31.347480
+
+[78] Log opened at 2024-10-21 17:07:31.418204
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] Log opened at 2024-10-21 17:07:31.540190
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] Log opened at 2024-10-21 17:07:31.545866
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] Log closed at 2024-10-21 17:07:32.644504
+
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-21 17:07:33.216035
+
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 17:07:33.561475
+
+[91] Log opened at 2024-10-21 17:07:33.648725
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] Log closed at 2024-10-21 17:07:35.728511
+
+[78] Log opened at 2024-10-21 17:07:35.768834
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] Log opened at 2024-10-21 17:07:35.828828
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] Log opened at 2024-10-21 17:07:35.849535
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] Log opened at 2024-10-21 17:07:35.898327
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-21 17:07:36.902224
+
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] Log closed at 2024-10-21 17:07:53.643609
+
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] Log closed at 2024-10-21 17:08:08.873797
+
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 17:08:23.861168
+
+[76] Log opened at 2024-10-21 17:08:40.467385
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 17:08:56.496894
+
+[74] Log opened at 2024-10-21 17:16:01.887601
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-21 17:16:18.412728
+
+[94] Log opened at 2024-10-21 17:18:02.716076
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 17:18:22.390839
+
+[87] Log opened at 2024-10-21 17:18:59.788891
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2311
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error"
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error"
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error"
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- run -i 13
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- stack_get -i 14
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- property_get -i 15 -n "$datos_entrada" -d 0 -c 0
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- property_get -i 16 -n "$data" -d 0 -c 0
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- property_get -i 17 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- property_get -i 18 -n "$datos_papel" -d 0 -c 0
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- context_names -i 19 -d 0
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- context_get -i 20 -d 0 -c 0
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- property_get -i 21 -n "$data_cabecera" -d 0 -c 0
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- property_get -i 22 -n "$data_cabecera" -d 0 -c 0
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- property_get -i 23 -n "$data" -d 0 -c 0
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- property_get -i 24 -n "$data" -d 0 -c 0
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- property_get -i 25 -n "$data" -d 0 -c 0
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- property_get -i 26 -n "$papel_formato_id" -d 0 -c 0
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- property_get -i 27 -n "$data" -d 0 -c 0
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- property_get -i 28 -n "$data" -d 0 -c 0
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- property_get -i 29 -n "$resumen_totales" -d 0 -c 0
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- run -i 30
+[87] [Step Debug] ->
+
+[87] Log closed at 2024-10-21 17:19:25.146867
+
+[93] Log opened at 2024-10-21 17:19:40.885560
+[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93'
+[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[93] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2311
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error"
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error"
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error"
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- run -i 14
+[93] [Step Debug] ->
+
+[93] [Step Debug] ->
+
+[93] [Step Debug] ->
+
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- stack_get -i 15
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- property_get -i 16 -n "$datos_entrada" -d 0 -c 0
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- property_get -i 17 -n "$data" -d 0 -c 0
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- property_get -i 18 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- property_get -i 19 -n "$datos_papel" -d 0 -c 0
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- context_names -i 20 -d 0
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- context_get -i 21 -d 0 -c 0
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- property_get -i 22 -n "$reqData" -d 0 -c 0
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- property_get -i 23 -n "$reqData[\"cubierta\"]" -p 0 -d 0 -c 0
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- run -i 24
+[91] Log opened at 2024-10-21 17:20:30.138922
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2311
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error"
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error"
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error"
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- run -i 14
+[91] [Step Debug] ->
+
+[91] [Step Debug] ->
+
+[91] [Step Debug] ->
+
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- stack_get -i 25
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- property_get -i 26 -n "$datos_entrada" -d 0 -c 0
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- property_get -i 27 -n "$data" -d 0 -c 0
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- property_get -i 28 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- property_get -i 29 -n "$datos_papel" -d 0 -c 0
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- context_names -i 30 -d 0
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- context_get -i 31 -d 0 -c 0
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- property_get -i 32 -n "$datos_presupuesto" -d 0 -c 0
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- property_get -i 33 -n "$datos_presupuesto[\"servicios\"]" -p 0 -d 0 -c 0
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- property_get -i 34 -n "$datos_presupuesto" -d 0 -c 0
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- step_over -i 35
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- stack_get -i 36
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- property_get -i 37 -n "$datos_entrada" -d 0 -c 0
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- property_get -i 38 -n "$data" -d 0 -c 0
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- property_get -i 39 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- property_get -i 40 -n "$datos_papel" -d 0 -c 0
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- context_names -i 41 -d 0
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- context_get -i 42 -d 0 -c 0
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- property_get -i 43 -n "$datosCabecera" -d 0 -c 0
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- run -i 44
+[93] [Step Debug] ->
+
+[93] Log closed at 2024-10-21 17:42:59.360459
+
+[91] [Step Debug] ->
+
+[91] Log closed at 2024-10-21 17:43:00.362114
+
+[91] Log opened at 2024-10-21 17:43:00.641070
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2311
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error"
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error"
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error"
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- run -i 14
+[85] Log opened at 2024-10-21 17:43:00.862309
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[85] [Step Debug] ->
+
+[85] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[85] [Step Debug] ->
+
+[85] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[85] [Step Debug] ->
+
+[85] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[85] [Step Debug] ->
+
+[85] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2311
+[85] [Step Debug] ->
+
+[85] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[85] [Step Debug] ->
+
+[85] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error"
+[85] [Step Debug] ->
+
+[85] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error"
+[85] [Step Debug] ->
+
+[85] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error"
+[85] [Step Debug] ->
+
+[91] [Step Debug] ->
+
+[91] Log closed at 2024-10-21 17:43:00.978184
+
+[85] [Step Debug] <- run -i 14
+[85] [Step Debug] ->
+
+[85] Log closed at 2024-10-21 17:43:01.916899
+
+[89] Log opened at 2024-10-21 17:43:01.971461
+[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89'
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] [Step Debug] ->
+
+[89] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[89] [Step Debug] ->
+
+[89] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[89] [Step Debug] ->
+
+[89] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[89] [Step Debug] ->
+
+[92] Log opened at 2024-10-21 17:43:01.991680
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[89] [Step Debug] ->
+
+[92] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] ->
+
+[89] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[89] [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] ->
+
+[76] Log opened at 2024-10-21 17:43:02.000922
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[92] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[92] [Step Debug] ->
+
+[76] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ->
+
+[89] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[89] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[92] [Step Debug] ->
+
+[89] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[92] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[76] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[89] [Step Debug] ->
+
+[92] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[89] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[92] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[89] [Step Debug] ->
+
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2311
+[92] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[89] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2311
+[92] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[89] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[92] [Step Debug] ->
+
+[89] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[76] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2311
+[92] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error"
+[76] [Step Debug] ->
+
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error"
+[92] [Step Debug] ->
+
+[89] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error"
+[92] [Step Debug] ->
+
+[89] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error"
+[76] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[89] [Step Debug] ->
+
+[89] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error"
+[76] [Step Debug] ->
+
+[89] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error"
+[89] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error"
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error"
+[89] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error"
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- feature_set -i 8 -n max_children -v 100
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- feature_set -i 9 -n max_data -v 8192
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- feature_set -i 10 -n notify_ok -v 1
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- feature_set -i 12 -n resolved_breakpoints -v 1
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- feature_set -i 13 -n extended_properties -v 1
+[76] [Step Debug] ->
+
+[89] [Step Debug] <- run -i 14
+[92] [Step Debug] <- run -i 14
+[76] [Step Debug] <- run -i 14
+[92] [Step Debug] ->
+
+[92] Log closed at 2024-10-21 17:43:02.742688
+
+[76] [Step Debug] ->
+
+[76] Log closed at 2024-10-21 17:43:02.890041
+
+[92] Log opened at 2024-10-21 17:43:02.958444
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2311
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error"
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error"
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error"
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- run -i 14
+[89] [Step Debug] ->
+
+[89] Log closed at 2024-10-21 17:43:03.397853
+
+[92] [Step Debug] ->
+
+[92] [Step Debug] ->
+
+[92] [Step Debug] ->
+
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- stack_get -i 15
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- property_get -i 16 -n "$datos_entrada" -d 0 -c 0
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- property_get -i 17 -n "$data" -d 0 -c 0
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- property_get -i 18 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- property_get -i 19 -n "$datos_papel" -d 0 -c 0
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- context_names -i 20 -d 0
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- context_get -i 21 -d 0 -c 0
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_remove -i 22 -d 920012
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- run -i 23
+[92] [Step Debug] ->
+
+[92] Log closed at 2024-10-21 17:43:15.186449
+
+[92] Log opened at 2024-10-21 17:43:18.309491
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error"
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error"
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error"
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- run -i 13
+[92] [Step Debug] ->
+
+[92] [Step Debug] ->
+
+[94] Log opened at 2024-10-21 17:43:20.331528
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] ->
+
+[94] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[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] ->
+
+[94] [Step Debug] <- run -i 13
+[87] Log opened at 2024-10-21 17:43:20.628275
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error"
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error"
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error"
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- run -i 13
+[92] [Step Debug] ->
+
+[92] Log closed at 2024-10-21 17:43:32.538749
+
+[94] [Step Debug] ->
+
+[94] [Step Debug] ->
+
+[94] [Step Debug] ->
+
+[94] Log closed at 2024-10-21 17:43:46.991282
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] Log closed at 2024-10-21 17:44:02.349016
+
+[93] Log opened at 2024-10-21 17:45:54.744234
+[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93'
+[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[93] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error"
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error"
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error"
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- run -i 13
+[93] [Step Debug] ->
+
+[93] [Step Debug] ->
+
+[93] [Step Debug] ->
+
+[93] Log closed at 2024-10-21 17:46:10.296667
+
+[95] Log opened at 2024-10-21 17:46:28.276934
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[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] ->
+
+[95] [Step Debug] <- run -i 13
+[95] [Step Debug] ->
+
+[95] Log closed at 2024-10-21 17:46:29.029207
+
+[91] Log opened at 2024-10-21 17:46:34.453191
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[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-10-21 17:46:35.208962
+
+[91] Log opened at 2024-10-21 17:46:39.636444
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[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] ->
+
+[91] [Step Debug] <- stack_get -i 14
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- property_get -i 15 -n "$datos_entrada" -d 0 -c 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- property_get -i 16 -n "$data" -d 0 -c 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- property_get -i 17 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- property_get -i 18 -n "$datos_papel" -d 0 -c 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- context_names -i 19 -d 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- context_get -i 20 -d 0 -c 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- property_get -i 21 -n "$reqData" -d 0 -c 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- property_get -i 22 -n "$interior" -d 0 -c 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- step_over -i 23
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- stack_get -i 24
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- property_get -i 25 -n "$datos_entrada" -d 0 -c 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- property_get -i 26 -n "$data" -d 0 -c 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- property_get -i 27 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- property_get -i 28 -n "$datos_papel" -d 0 -c 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- context_names -i 29 -d 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- context_get -i 30 -d 0 -c 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- run -i 31
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[91] [Step Debug] ->
+
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- stack_get -i 33
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- property_get -i 34 -n "$datos_entrada" -d 0 -c 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- property_get -i 35 -n "$data" -d 0 -c 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- property_get -i 36 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- property_get -i 37 -n "$datos_papel" -d 0 -c 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- context_names -i 38 -d 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- context_get -i 39 -d 0 -c 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- property_get -i 40 -n "$datos_presupuesto" -d 0 -c 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- property_get -i 41 -n "$prototipo" -d 0 -c 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- run -i 42
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- stack_get -i 43
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- property_get -i 44 -n "$datos_entrada" -d 0 -c 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- property_get -i 45 -n "$data" -d 0 -c 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- property_get -i 46 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- property_get -i 47 -n "$datos_papel" -d 0 -c 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- context_names -i 48 -d 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- context_get -i 49 -d 0 -c 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- property_get -i 50 -n "$resumen_totales" -d 0 -c 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- property_get -i 51 -n "$data" -d 0 -c 0
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- run -i 52
+[91] [Step Debug] ->
+
+[91] Log closed at 2024-10-21 17:47:59.337999
+
+[74] Log opened at 2024-10-21 17:48:41.283397
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [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] ->
+
+[74] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error"
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error"
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error"
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- run -i 14
+[74] [Step Debug] ->
+
+[74] [Step Debug] ->
+
+[74] [Step Debug] ->
+
+[74] [Step Debug] ->
+
+[74] Log closed at 2024-10-21 17:48:42.854546
+
+[74] Log opened at 2024-10-21 17:48:43.050252
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [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] ->
+
+[74] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[74] [Step Debug] ->
+
+[85] Log opened at 2024-10-21 17:48:43.072716
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error"
+[74] [Step Debug] ->
+
+[85] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error"
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error"
+[74] [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] <- feature_set -i 5 -n extended_properties -v 1
+[85] [Step Debug] ->
+
+[74] [Step Debug] <- run -i 14
+[85] [Step Debug] <- run -i 6
+[74] [Step Debug] ->
+
+[74] Log closed at 2024-10-21 17:48:43.277847
+
+[85] [Step Debug] ->
+
+[85] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[85] [Step Debug] ->
+
+[85] Log closed at 2024-10-21 17:48:43.907190
+
+[85] Log opened at 2024-10-21 17:48:43.961309
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[85] [Step Debug] ->
+
+[85] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[85] [Step Debug] ->
+
+[85] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[85] [Step Debug] ->
+
+[85] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[85] [Step Debug] ->
+
+[85] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[85] [Step Debug] ->
+
+[85] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[85] [Step Debug] ->
+
+[85] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error"
+[85] [Step Debug] ->
+
+[85] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error"
+[85] [Step Debug] ->
+
+[85] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error"
+[85] [Step Debug] ->
+
+[76] Log opened at 2024-10-21 17:48:44.075281
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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
+[85] [Step Debug] <- run -i 14
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- run -i 3
+[89] Log opened at 2024-10-21 17:48:44.110908
+[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89'
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] [Step Debug] ->
+
+[89] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[89] [Step Debug] ->
+
+[89] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[89] [Step Debug] ->
+
+[89] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[89] [Step Debug] ->
+
+[89] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[89] [Step Debug] ->
+
+[89] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[89] [Step Debug] ->
+
+[89] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[89] [Step Debug] ->
+
+[89] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[89] [Step Debug] ->
+
+[89] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[89] [Step Debug] ->
+
+[89] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[89] [Step Debug] ->
+
+[89] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[89] [Step Debug] ->
+
+[89] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error"
+[89] [Step Debug] ->
+
+[89] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error"
+[89] [Step Debug] ->
+
+[89] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error"
+[89] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1
+[76] [Step Debug] ->
+
+[76] Log closed at 2024-10-21 17:48:44.645356
+
+[85] [Step Debug] ->
+
+[85] [Step Debug] ->
+
+[85] Log closed at 2024-10-21 17:48:45.046845
+
+[94] Log opened at 2024-10-21 17:48:52.737341
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] ->
+
+[94] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error"
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error"
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error"
+[94] [Step Debug] ->
+
+[89] [Step Debug] <- run -i 14
+[94] [Step Debug] <- run -i 14
+[94] [Step Debug] ->
+
+[94] [Step Debug] ->
+
+[89] [Step Debug] ->
+
+[89] Log closed at 2024-10-21 17:48:53.534826
+
+[94] [Step Debug] ->
+
+[94] [Step Debug] ->
+
+[94] Log closed at 2024-10-21 17:48:54.473265
+
+[94] Log opened at 2024-10-21 17:48:54.732526
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] ->
+
+[94] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error"
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error"
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error"
+[94] [Step Debug] ->
+
+[91] Log opened at 2024-10-21 17:48:54.857452
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- run -i 6
+[94] [Step Debug] <- run -i 14
+[94] [Step Debug] ->
+
+[94] Log closed at 2024-10-21 17:48:55.113239
+
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[91] [Step Debug] ->
+
+[91] Log closed at 2024-10-21 17:48:55.825542
+
+[87] Log opened at 2024-10-21 17:48:55.995222
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error"
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error"
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error"
+[87] [Step Debug] ->
+
+[95] Log opened at 2024-10-21 17:48:56.106303
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[95] [Step Debug] ->
+
+[87] [Step Debug] <- run -i 14
+[95] [Step Debug] <- run -i 6
+[93] Log opened at 2024-10-21 17:48:56.139880
+[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93'
+[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[93] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error"
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error"
+[93] [Step Debug] ->
+
+[93] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error"
+[93] [Step Debug] ->
+
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[95] [Step Debug] ->
+
+[95] Log closed at 2024-10-21 17:48:56.929557
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] Log closed at 2024-10-21 17:48:57.375333
+
+[93] [Step Debug] <- stop -i 14
+[93] [Step Debug] ->
+
+[87] Log opened at 2024-10-21 17:48:59.840435
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 17:49:00.984262
+
+[87] Log opened at 2024-10-21 17:49:01.156151
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 17:49:02.792580
+
+[76] Log opened at 2024-10-21 17:49:36.906461
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 17:49:38.145979
+
+[85] Log opened at 2024-10-21 17:49:49.533630
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log opened at 2024-10-21 17:49:51.566055
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] Log opened at 2024-10-21 17:49:53.620961
+[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89'
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[85] Log closed at 2024-10-21 17:50:06.901463
+
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 17:50:22.883225
+
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] Log closed at 2024-10-21 17:50:40.360092
+
+[94] Log opened at 2024-10-21 17:51:03.886601
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 17:51:05.849784
+
+[94] Log opened at 2024-10-21 17:51:06.108779
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] Log opened at 2024-10-21 17:51:06.217479
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 17:51:06.821558
+
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] Log closed at 2024-10-21 17:51:07.605574
+
+[74] Log opened at 2024-10-21 17:51:07.677643
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] Log opened at 2024-10-21 17:51:07.790621
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] Log opened at 2024-10-21 17:51:07.810493
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] Log closed at 2024-10-21 17:51:08.943898
+
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-21 17:51:09.580203
+
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 17:51:09.952067
+
+[74] Log opened at 2024-10-21 17:51:10.010004
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-21 17:51:11.659638
+
+[92] Log opened at 2024-10-21 17:51:21.277343
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 17:51:22.600097
+
+[92] Log opened at 2024-10-21 17:51:23.278249
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] Log opened at 2024-10-21 17:51:24.768212
+[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89'
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] Log opened at 2024-10-21 17:51:24.814961
+[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96'
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 17:51:41.528723
+
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[89] Log closed at 2024-10-21 17:51:57.395256
+
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] Log closed at 2024-10-21 17:52:13.991010
+
+[97] Log opened at 2024-10-21 17:52:24.151921
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] Log closed at 2024-10-21 17:52:41.377631
+
+[91] Log opened at 2024-10-21 17:52:53.191938
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] Log closed at 2024-10-21 17:52:55.191337
+
+[91] Log opened at 2024-10-21 17:52:55.452826
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] Log opened at 2024-10-21 17:52:55.544727
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] Log closed at 2024-10-21 17:52:56.187229
+
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 17:52:56.952681
+
+[76] Log opened at 2024-10-21 17:52:57.022036
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] Log opened at 2024-10-21 17:52:57.149258
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] Log opened at 2024-10-21 17:52:57.150317
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 17:52:58.240302
+
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 17:52:58.863146
+
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] Log closed at 2024-10-21 17:52:59.272269
+
+[76] Log opened at 2024-10-21 17:52:59.329570
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 17:53:00.980637
+
+[76] Log opened at 2024-10-21 17:53:01.108029
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] Log opened at 2024-10-21 17:53:01.125546
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] Log opened at 2024-10-21 17:53:01.166733
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 17:53:17.792826
+
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 17:53:34.644230
+
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] Log closed at 2024-10-21 17:53:49.363127
+
+[96] Log opened at 2024-10-21 17:54:58.258670
+[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96'
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] Log closed at 2024-10-21 17:55:00.333175
+
+[96] Log opened at 2024-10-21 17:55:00.517323
+[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96'
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] Log opened at 2024-10-21 17:55:00.524802
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] Log closed at 2024-10-21 17:55:01.174111
+
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] Log closed at 2024-10-21 17:55:01.913776
+
+[97] Log opened at 2024-10-21 17:55:01.975887
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] Log opened at 2024-10-21 17:55:02.086884
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[98] Log opened at 2024-10-21 17:55:02.110286
+[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98'
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 17:55:03.230563
+
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] Log closed at 2024-10-21 17:55:03.856085
+
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[98] Log closed at 2024-10-21 17:55:04.262319
+
+[94] Log opened at 2024-10-21 17:55:04.319509
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 17:55:06.000791
+
+[94] Log opened at 2024-10-21 17:55:06.135503
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] Log opened at 2024-10-21 17:55:06.153833
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[98] Log opened at 2024-10-21 17:55:06.186273
+[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98'
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] Log closed at 2024-10-21 17:55:23.252004
+
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 17:55:38.392793
+
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[98] Log closed at 2024-10-21 17:55:53.999298
+
+[91] Log opened at 2024-10-21 17:56:13.490680
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] Log closed at 2024-10-21 17:56:15.509581
+
+[91] Log opened at 2024-10-21 17:56:15.723635
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] Log opened at 2024-10-21 17:56:15.729605
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] Log closed at 2024-10-21 17:56:16.389517
+
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 17:56:17.059497
+
+[87] Log opened at 2024-10-21 17:56:17.111904
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] Log opened at 2024-10-21 17:56:17.243716
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] Log opened at 2024-10-21 17:56:17.256732
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-21 17:56:18.348219
+
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 17:56:18.999620
+
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 17:56:19.384793
+
+[74] Log opened at 2024-10-21 17:56:19.446453
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-21 17:56:21.121055
+
+[74] Log opened at 2024-10-21 17:56:21.242162
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] Log opened at 2024-10-21 17:56:21.260897
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] Log opened at 2024-10-21 17:56:21.294715
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 17:56:39.484339
+
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-21 17:56:56.685250
+
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 17:57:12.413707
+
+[96] Log opened at 2024-10-21 17:57:42.613557
+[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96'
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] Log closed at 2024-10-21 17:57:44.516445
+
+[96] Log opened at 2024-10-21 17:57:44.706880
+[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96'
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] Log opened at 2024-10-21 17:57:44.725904
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] Log closed at 2024-10-21 17:57:45.402545
+
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] Log closed at 2024-10-21 17:57:46.001878
+
+[96] Log opened at 2024-10-21 17:57:46.102965
+[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96'
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] Log opened at 2024-10-21 17:57:46.261673
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] Log opened at 2024-10-21 17:57:46.276064
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] Log closed at 2024-10-21 17:57:47.440023
+
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] Log closed at 2024-10-21 17:57:48.072160
+
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 17:57:48.421733
+
+[97] Log opened at 2024-10-21 17:57:48.498366
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] Log closed at 2024-10-21 17:57:50.120991
+
+[97] Log opened at 2024-10-21 17:57:52.261989
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] Log opened at 2024-10-21 17:57:54.308961
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log opened at 2024-10-21 17:57:56.354277
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] Log closed at 2024-10-21 17:58:10.361714
+
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] Log closed at 2024-10-21 17:58:28.113136
+
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 17:58:42.917554
+
+[87] Log opened at 2024-10-21 18:00:03.861730
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- run -i 15
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] Log closed at 2024-10-21 18:00:05.422735
+
+[87] Log opened at 2024-10-21 18:00:05.628742
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] ->
+
+[74] Log opened at 2024-10-21 18:00:05.635634
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[87] [Step Debug] ->
+
+[74] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] ->
+
+[87] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[87] [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] ->
+
+[74] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[74] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[74] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[87] [Step Debug] ->
+
+[74] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[74] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[87] [Step Debug] ->
+
+[74] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[74] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[87] [Step Debug] ->
+
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250
+[74] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250
+[74] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[87] [Step Debug] ->
+
+[74] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[74] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[74] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
+[87] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
+[87] [Step Debug] ->
+
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
+[74] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[74] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[87] [Step Debug] ->
+
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[74] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[74] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250
+[74] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[74] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[74] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[87] [Step Debug] ->
+
+[74] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- run -i 20
+[74] [Step Debug] <- run -i 20
+[87] [Step Debug] ->
+
+[87] Log closed at 2024-10-21 18:00:05.872822
+
+[74] [Step Debug] ->
+
+[74] Log closed at 2024-10-21 18:00:06.516304
+
+[74] Log opened at 2024-10-21 18:00:06.630468
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [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] ->
+
+[74] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- run -i 15
+[76] Log opened at 2024-10-21 18:00:06.801277
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] Log opened at 2024-10-21 18:00:06.802891
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ->
+
+[91] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] ->
+
+[76] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[76] [Step Debug] ->
+
+[91] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[91] [Step Debug] ->
+
+[76] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[91] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[91] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[91] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[91] [Step Debug] ->
+
+[76] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[76] [Step Debug] ->
+
+[91] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[91] [Step Debug] ->
+
+[76] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[91] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[91] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[91] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[91] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[76] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[91] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
+[76] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[76] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
+[76] [Step Debug] ->
+
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250
+[76] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
+[76] [Step Debug] ->
+
+[91] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[91] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[76] [Step Debug] ->
+
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[76] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
+[76] [Step Debug] ->
+
+[91] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250
+[91] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
+[76] [Step Debug] ->
+
+[91] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[91] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
+[91] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[76] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[91] [Step Debug] ->
+
+[91] [Step Debug] <- run -i 20
+[76] [Step Debug] <- run -i 20
+[76] [Step Debug] ->
+
+[76] Log closed at 2024-10-21 18:00:07.437143
+
+[74] [Step Debug] ->
+
+[74] [Step Debug] ->
+
+[74] Log closed at 2024-10-21 18:00:07.862982
+
+[91] [Step Debug] ->
+
+[91] Log closed at 2024-10-21 18:00:08.020321
+
+[76] Log opened at 2024-10-21 18:00:08.078169
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- run -i 15
+[76] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- stack_get -i 16
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 17 -n "$datos_entrada" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 18 -n "$data" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 19 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 20 -n "$datos_papel" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_names -i 21 -d 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_get -i 22 -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 23 -n "$id" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 24 -n "$cliente_id" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 25 -n "$id" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- step_over -i 26
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- stack_get -i 27
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 28 -n "$datos_entrada" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 29 -n "$data" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 30 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 31 -n "$datos_papel" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_names -i 32 -d 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_get -i 33 -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- step_over -i 34
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- stack_get -i 35
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 36 -n "$datos_entrada" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 37 -n "$data" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 38 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 39 -n "$datos_papel" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_names -i 40 -d 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_get -i 41 -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- step_over -i 42
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- stack_get -i 43
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- stack_get -i 44
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 45 -n "$datos_entrada" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 46 -n "$data" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 47 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 48 -n "$datos_papel" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_names -i 49 -d 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_get -i 50 -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- step_over -i 51
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- stack_get -i 52
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- stack_get -i 53
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 54 -n "$datos_entrada" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 55 -n "$data" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 56 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 57 -n "$datos_papel" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_names -i 58 -d 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_get -i 59 -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- step_over -i 60
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- stack_get -i 61
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 62 -n "$datos_entrada" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 63 -n "$data" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 64 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 65 -n "$datos_papel" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_names -i 66 -d 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_get -i 67 -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- step_over -i 68
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- stack_get -i 69
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 70 -n "$datos_entrada" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 71 -n "$data" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 72 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 73 -n "$datos_papel" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_names -i 74 -d 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_get -i 75 -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- step_over -i 76
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- stack_get -i 77
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 78 -n "$datos_entrada" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 79 -n "$data" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 80 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 81 -n "$datos_papel" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_names -i 82 -d 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_get -i 83 -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- step_over -i 84
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- stack_get -i 85
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- stack_get -i 86
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 87 -n "$datos_entrada" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 88 -n "$data" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 89 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 90 -n "$datos_papel" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_names -i 91 -d 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_get -i 92 -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- step_over -i 93
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- stack_get -i 94
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- stack_get -i 95
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 96 -n "$datos_entrada" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 97 -n "$data" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 98 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 99 -n "$datos_papel" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_names -i 100 -d 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_get -i 101 -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- step_over -i 102
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- stack_get -i 103
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 104 -n "$datos_entrada" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 105 -n "$data" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 106 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 107 -n "$datos_papel" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_names -i 108 -d 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_get -i 109 -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- step_over -i 110
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- stack_get -i 111
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 112 -n "$datos_entrada" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 113 -n "$data" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 114 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 115 -n "$datos_papel" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_names -i 116 -d 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_get -i 117 -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- run -i 118
+[76] [Step Debug] ->
+
+[76] Log closed at 2024-10-21 18:00:37.650745
+
+[76] Log opened at 2024-10-21 18:00:39.937051
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- run -i 15
+[76] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[76] Log closed at 2024-10-21 18:00:41.376266
+
+[76] Log opened at 2024-10-21 18:00:41.580298
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] ->
+
+[94] Log opened at 2024-10-21 18:00:41.586346
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[76] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[76] [Step Debug] ->
+
+[94] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] ->
+
+[76] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[76] [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] ->
+
+[94] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[94] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[94] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[76] [Step Debug] ->
+
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[76] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[76] [Step Debug] ->
+
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250
+[76] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[76] [Step Debug] ->
+
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[76] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250
+[94] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[76] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[94] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
+[94] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[94] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
+[76] [Step Debug] ->
+
+[94] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
+[76] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[94] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[76] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[76] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[94] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250
+[76] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250
+[76] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[76] [Step Debug] ->
+
+[94] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[76] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[94] [Step Debug] ->
+
+[76] [Step Debug] <- run -i 20
+[94] [Step Debug] <- run -i 20
+[76] [Step Debug] ->
+
+[76] Log closed at 2024-10-21 18:00:41.805021
+
+[94] [Step Debug] ->
+
+[94] Log closed at 2024-10-21 18:00:42.423780
+
+[76] Log opened at 2024-10-21 18:00:42.590319
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
+[76] [Step Debug] ->
+
+[97] Log opened at 2024-10-21 18:00:42.686833
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[94] Log opened at 2024-10-21 18:00:42.686823
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] ->
+
+[97] [Step Debug] ->
+
+[94] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[94] [Step Debug] ->
+
+[97] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[97] [Step Debug] ->
+
+[94] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[94] [Step Debug] ->
+
+[97] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[97] [Step Debug] ->
+
+[94] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[94] [Step Debug] ->
+
+[97] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[97] [Step Debug] ->
+
+[94] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[97] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[94] [Step Debug] ->
+
+[97] [Step Debug] ->
+
+[97] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[94] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[94] [Step Debug] ->
+
+[97] [Step Debug] ->
+
+[76] [Step Debug] <- run -i 15
+[94] [Step Debug] <- run -i 6
+[97] [Step Debug] <- run -i 6
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[94] [Step Debug] ->
+
+[94] Log closed at 2024-10-21 18:00:43.229005
+
+[76] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[76] Log closed at 2024-10-21 18:00:43.637006
+
+[97] [Step Debug] ->
+
+[97] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[97] [Step Debug] ->
+
+[97] Log closed at 2024-10-21 18:00:43.804267
+
+[94] Log opened at 2024-10-21 18:00:43.867436
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] ->
+
+[94] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- run -i 15
+[94] [Step Debug] ->
+
+[94] [Step Debug] ->
+
+[94] [Step Debug] ->
+
+[94] [Step Debug] ->
+
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- stack_get -i 16
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 17 -n "$datos_entrada" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 18 -n "$data" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 19 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 20 -n "$datos_papel" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- context_names -i 21 -d 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- context_get -i 22 -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- step_over -i 23
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- stack_get -i 24
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 25 -n "$datos_entrada" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 26 -n "$data" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 27 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 28 -n "$datos_papel" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- context_names -i 29 -d 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- context_get -i 30 -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- step_over -i 31
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- stack_get -i 32
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 33 -n "$datos_entrada" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 34 -n "$data" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 35 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 36 -n "$datos_papel" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- step_over -i 37
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- stack_get -i 38
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 39 -n "$datos_entrada" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 40 -n "$data" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 41 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 42 -n "$datos_papel" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- step_over -i 43
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- stack_get -i 44
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- stack_get -i 45
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 46 -n "$datos_entrada" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 47 -n "$data" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 48 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 49 -n "$datos_papel" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- context_names -i 50 -d 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- step_over -i 51
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- context_get -i 52 -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- stack_get -i 53
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 54 -n "$datos_entrada" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 55 -n "$data" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 56 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 57 -n "$datos_papel" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- step_over -i 58
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- context_names -i 59 -d 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- stack_get -i 60
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- stack_get -i 61
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- context_get -i 62 -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 63 -n "$datos_entrada" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 64 -n "$data" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 65 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 66 -n "$datos_papel" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- context_names -i 67 -d 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- context_get -i 68 -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- step_over -i 69
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- stack_get -i 70
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- stack_get -i 71
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 72 -n "$datos_entrada" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 73 -n "$data" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 74 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 75 -n "$datos_papel" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- context_names -i 76 -d 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- context_get -i 77 -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- step_over -i 78
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- stack_get -i 79
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 80 -n "$datos_entrada" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 81 -n "$data" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 82 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 83 -n "$datos_papel" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- context_names -i 84 -d 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- context_get -i 85 -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- step_over -i 86
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- stack_get -i 87
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- stack_get -i 88
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 89 -n "$datos_entrada" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 90 -n "$data" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 91 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 92 -n "$datos_papel" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- context_names -i 93 -d 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- context_get -i 94 -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 95 -n "$direcciones" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 96 -n "$cliente_id" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 97 -n "$direcciones" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 98 -n "$i" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 99 -n "$direcciones" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 100 -n "$direcciones[0]" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 101 -n "$direcciones[0]->attributes" -p 0 -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 102 -n "$direccion_id" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 103 -n "$model_direcciones" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 104 -n "$direcciones" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 105 -n "$direcciones[0]" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 106 -n "$direcciones[0]->attributes" -p 0 -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 107 -n "$direcciones" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 108 -n "$direcciones[0]" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 109 -n "$direcciones[0]->attributes" -p 0 -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 110 -n "$i" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 111 -n "$cliente_id" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 112 -n "$cliente_id" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- run -i 113
+[94] [Step Debug] ->
+
+[94] Log closed at 2024-10-21 18:04:08.527564
+
+[96] Log opened at 2024-10-21 18:04:15.118155
+[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96'
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] ->
+
+[96] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[96] [Step Debug] ->
+
+[96] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[96] [Step Debug] ->
+
+[96] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[96] [Step Debug] ->
+
+[96] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[96] [Step Debug] ->
+
+[96] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[96] [Step Debug] ->
+
+[96] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[96] [Step Debug] ->
+
+[96] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[96] [Step Debug] ->
+
+[96] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[96] [Step Debug] ->
+
+[96] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250
+[96] [Step Debug] ->
+
+[96] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[96] [Step Debug] ->
+
+[96] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[96] [Step Debug] ->
+
+[96] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
+[96] [Step Debug] ->
+
+[96] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
+[96] [Step Debug] ->
+
+[96] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
+[96] [Step Debug] ->
+
+[96] [Step Debug] <- run -i 15
+[96] [Step Debug] ->
+
+[96] [Step Debug] ->
+
+[96] [Step Debug] ->
+
+[96] [Step Debug] ->
+
+[87] Log opened at 2024-10-21 18:04:17.004917
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
+[87] [Step Debug] ->
+
+[74] Log opened at 2024-10-21 18:04:17.079098
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [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] ->
+
+[74] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[74] [Step Debug] ->
+
+[87] [Step Debug] <- run -i 15
+[74] [Step Debug] <- run -i 6
+[96] [Step Debug] ->
+
+[96] [Step Debug] <- stop -i 16
+[96] [Step Debug] ->
+
+[96] Log closed at 2024-10-21 18:04:29.175580
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- stop -i 16
+[87] [Step Debug] ->
+
+[87] Log closed at 2024-10-21 18:04:43.136939
+
+[74] [Step Debug] ->
+
+[74] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[74] [Step Debug] ->
+
+[74] Log closed at 2024-10-21 18:04:58.503756
+
+[91] Log opened at 2024-10-21 18:06:07.362154
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] Log closed at 2024-10-21 18:06:09.342884
+
+[91] Log opened at 2024-10-21 18:06:09.548255
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] Log opened at 2024-10-21 18:06:09.554100
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] Log closed at 2024-10-21 18:06:10.252513
+
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] Log closed at 2024-10-21 18:06:10.919606
+
+[95] Log opened at 2024-10-21 18:06:10.987507
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] Log opened at 2024-10-21 18:06:11.155378
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[98] Log opened at 2024-10-21 18:06:11.175942
+[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98'
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:06:12.229780
+
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] Log closed at 2024-10-21 18:06:12.904206
+
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[98] Log closed at 2024-10-21 18:06:13.267140
+
+[92] Log opened at 2024-10-21 18:06:13.325108
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:06:15.032722
+
+[92] Log opened at 2024-10-21 18:06:15.169741
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] Log opened at 2024-10-21 18:06:15.200860
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[98] Log opened at 2024-10-21 18:06:15.232275
+[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98'
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:06:31.340013
+
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] Log closed at 2024-10-21 18:06:46.318115
+
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[98] Log closed at 2024-10-21 18:07:03.263107
+
+[94] Log opened at 2024-10-21 18:07:48.226606
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 18:07:49.412912
+
+[96] Log opened at 2024-10-21 18:07:55.343522
+[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96'
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] Log closed at 2024-10-21 18:07:56.573808
+
+[87] Log opened at 2024-10-21 18:08:01.963871
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:08:18.667252
+
+[87] Log opened at 2024-10-21 18:08:20.843066
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:08:22.887571
+
+[87] Log opened at 2024-10-21 18:08:23.089559
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] Log opened at 2024-10-21 18:08:23.103099
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:08:23.755537
+
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-21 18:08:24.364370
+
+[74] Log opened at 2024-10-21 18:08:24.455440
+[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74'
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] Log opened at 2024-10-21 18:08:24.560195
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[91] Log opened at 2024-10-21 18:08:24.560194
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:08:25.654732
+
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[74] Log closed at 2024-10-21 18:08:26.258448
+
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[91] Log closed at 2024-10-21 18:08:26.657333
+
+[76] Log opened at 2024-10-21 18:08:26.716832
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:08:28.275645
+
+[76] Log opened at 2024-10-21 18:08:28.548348
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:08:29.659395
+
+[76] Log opened at 2024-10-21 18:08:30.659149
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log opened at 2024-10-21 18:08:32.734816
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] Log opened at 2024-10-21 18:08:34.770282
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:08:45.905961
+
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:09:01.641021
+
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] Log closed at 2024-10-21 18:09:17.346159
+
+[98] Log opened at 2024-10-21 18:17:16.370656
+[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98'
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[98] Log closed at 2024-10-21 18:17:18.364364
+
+[98] Log opened at 2024-10-21 18:17:18.587285
+[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98'
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] Log opened at 2024-10-21 18:17:18.589389
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log opened at 2024-10-21 18:17:18.830820
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 18:17:19.298911
+
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:17:19.827444
+
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[98] Log closed at 2024-10-21 18:17:19.951113
+
+[87] Log opened at 2024-10-21 18:17:20.017615
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] Log opened at 2024-10-21 18:17:20.040910
+[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96'
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] Log closed at 2024-10-21 18:17:21.120472
+
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:17:21.737702
+
+[92] Log opened at 2024-10-21 18:17:37.600661
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:17:39.506447
+
+[92] Log opened at 2024-10-21 18:17:39.748915
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] Log opened at 2024-10-21 18:17:39.824983
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] Log opened at 2024-10-21 18:17:40.095674
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:17:40.429096
+
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] Log closed at 2024-10-21 18:17:41.107788
+
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 18:17:41.210078
+
+[97] Log opened at 2024-10-21 18:17:41.395616
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] Log opened at 2024-10-21 18:17:41.414587
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] Log closed at 2024-10-21 18:17:42.478985
+
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] Log closed at 2024-10-21 18:17:43.094589
+
+[87] Log opened at 2024-10-21 18:21:08.760241
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:21:10.620494
+
+[87] Log opened at 2024-10-21 18:21:10.848624
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:21:11.545632
+
+[92] Log opened at 2024-10-21 18:21:12.387793
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] Log opened at 2024-10-21 18:21:12.521925
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[100] Log opened at 2024-10-21 18:21:12.522231
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100'
+[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[100] Log closed at 2024-10-21 18:21:13.611287
+
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:21:14.276611
+
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 18:21:14.652669
+
+[92] Log opened at 2024-10-21 18:21:14.764812
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:21:16.489891
+
+[92] Log opened at 2024-10-21 18:21:16.696181
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[100] Log opened at 2024-10-21 18:21:16.886111
+[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100'
+[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:21:17.982109
+
+[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[100] Log closed at 2024-10-21 18:21:32.810467
+
+[95] Log opened at 2024-10-21 18:21:55.000627
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] Log closed at 2024-10-21 18:21:56.829315
+
+[95] Log opened at 2024-10-21 18:21:57.020609
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] Log closed at 2024-10-21 18:21:57.715912
+
+[95] Log opened at 2024-10-21 18:21:58.204778
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] Log opened at 2024-10-21 18:21:58.267899
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] Log opened at 2024-10-21 18:21:58.271133
+[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96'
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] Log closed at 2024-10-21 18:21:59.389367
+
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] Log closed at 2024-10-21 18:22:00.054791
+
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] Log closed at 2024-10-21 18:22:00.415797
+
+[97] Log opened at 2024-10-21 18:22:00.470749
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] Log closed at 2024-10-21 18:22:02.180004
+
+[97] Log opened at 2024-10-21 18:22:02.222078
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] Log closed at 2024-10-21 18:22:03.373090
+
+[87] Log opened at 2024-10-21 18:22:48.199613
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:22:50.071260
+
+[87] Log opened at 2024-10-21 18:22:50.290332
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:22:50.964706
+
+[94] Log opened at 2024-10-21 18:22:51.400916
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] Log opened at 2024-10-21 18:22:51.409736
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[100] Log opened at 2024-10-21 18:22:51.417288
+[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100'
+[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:22:52.519884
+
+[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[100] Log closed at 2024-10-21 18:22:52.865070
+
+[92] Log opened at 2024-10-21 18:22:52.985926
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 18:22:53.520291
+
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:22:54.588967
+
+[92] Log opened at 2024-10-21 18:22:55.239491
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:22:56.454124
+
+[101] Log opened at 2024-10-21 18:25:12.926392
+[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101'
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log opened at 2024-10-21 18:25:13.969538
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[101] Log closed at 2024-10-21 18:25:14.834517
+
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:25:15.987606
+
+[76] Log opened at 2024-10-21 18:25:16.261062
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:25:16.939987
+
+[76] Log opened at 2024-10-21 18:25:17.567711
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] Log opened at 2024-10-21 18:25:17.663346
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[99] Log opened at 2024-10-21 18:25:17.663187
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 18:25:18.861188
+
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:25:19.478286
+
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[97] Log closed at 2024-10-21 18:25:19.836486
+
+[87] Log opened at 2024-10-21 18:25:19.892237
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:25:21.475751
+
+[76] Log opened at 2024-10-21 18:25:21.519476
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:25:22.730664
+
+[92] Log opened at 2024-10-21 18:26:40.230529
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:26:42.152165
+
+[92] Log opened at 2024-10-21 18:26:42.459345
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:26:43.157992
+
+[102] Log opened at 2024-10-21 18:26:43.642225
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] Log opened at 2024-10-21 18:26:43.772459
+[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96'
+[95] Log opened at 2024-10-21 18:26:43.772521
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] Log closed at 2024-10-21 18:26:44.869020
+
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 18:26:45.510903
+
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[95] Log closed at 2024-10-21 18:26:45.901095
+
+[99] Log opened at 2024-10-21 18:26:45.958152
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 18:26:47.552189
+
+[102] Log opened at 2024-10-21 18:26:47.606585
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 18:26:48.827936
+
+[76] Log opened at 2024-10-21 18:27:51.504286
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:27:53.377887
+
+[76] Log opened at 2024-10-21 18:27:53.654646
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:27:54.352097
+
+[96] Log opened at 2024-10-21 18:27:55.093234
+[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96'
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] Log opened at 2024-10-21 18:27:55.139163
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] Log opened at 2024-10-21 18:27:55.139232
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:27:56.320755
+
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] Log closed at 2024-10-21 18:27:56.944450
+
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 18:27:57.313987
+
+[101] Log opened at 2024-10-21 18:27:57.378879
+[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101'
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[101] Log closed at 2024-10-21 18:27:58.989343
+
+[96] Log opened at 2024-10-21 18:27:59.029942
+[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96'
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] Log closed at 2024-10-21 18:28:00.267321
+
+[99] Log opened at 2024-10-21 18:30:02.745971
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 18:30:04.626641
+
+[99] Log opened at 2024-10-21 18:30:04.841549
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 18:30:05.518361
+
+[102] Log opened at 2024-10-21 18:30:05.884001
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log opened at 2024-10-21 18:30:06.100106
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] Log opened at 2024-10-21 18:30:06.101125
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 18:30:07.264424
+
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 18:30:07.910035
+
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:30:08.264559
+
+[104] Log opened at 2024-10-21 18:30:08.326349
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 18:30:09.949244
+
+[104] Log opened at 2024-10-21 18:30:10.006995
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 18:30:11.140695
+
+[76] Log opened at 2024-10-21 18:31:32.819546
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:31:34.783292
+
+[76] Log opened at 2024-10-21 18:31:35.003676
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:31:35.676626
+
+[92] Log opened at 2024-10-21 18:31:36.119438
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] Log opened at 2024-10-21 18:31:36.182573
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[101] Log opened at 2024-10-21 18:31:36.224615
+[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101'
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 18:31:37.421799
+
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:31:38.036013
+
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[101] Log closed at 2024-10-21 18:31:38.378286
+
+[94] Log opened at 2024-10-21 18:31:38.478814
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 18:31:40.111108
+
+[94] Log opened at 2024-10-21 18:31:40.163350
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 18:31:41.412953
+
+[103] Log opened at 2024-10-21 18:33:30.363163
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 18:33:32.252632
+
+[103] Log opened at 2024-10-21 18:33:32.470414
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 18:33:33.167288
+
+[103] Log opened at 2024-10-21 18:33:33.626737
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log opened at 2024-10-21 18:33:33.911066
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] Log opened at 2024-10-21 18:33:33.931901
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 18:33:34.998785
+
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 18:33:35.614215
+
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 18:33:36.027903
+
+[99] Log opened at 2024-10-21 18:33:36.088361
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 18:33:37.678916
+
+[99] Log opened at 2024-10-21 18:33:38.715316
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 18:33:39.900801
+
+[87] Log opened at 2024-10-21 18:34:16.636059
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:34:18.430789
+
+[87] Log opened at 2024-10-21 18:34:18.619643
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:34:19.311164
+
+[87] Log opened at 2024-10-21 18:34:19.866618
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] Log opened at 2024-10-21 18:34:19.897199
+[76] Log opened at 2024-10-21 18:34:19.897184
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 18:34:20.950544
+
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:34:21.277269
+
+[104] Log opened at 2024-10-21 18:34:21.338442
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:34:21.936987
+
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 18:34:23.030876
+
+[104] Log opened at 2024-10-21 18:34:23.867096
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 18:34:25.086392
+
+[94] Log opened at 2024-10-21 18:34:55.520740
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 18:34:57.705185
+
+[94] Log opened at 2024-10-21 18:34:57.948865
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 18:34:58.619314
+
+[103] Log opened at 2024-10-21 18:34:59.143535
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] Log opened at 2024-10-21 18:34:59.214018
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] Log opened at 2024-10-21 18:34:59.214018
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 18:35:00.285065
+
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 18:35:00.926749
+
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 18:35:01.267550
+
+[102] Log opened at 2024-10-21 18:35:01.328945
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 18:35:02.935970
+
+[102] Log opened at 2024-10-21 18:35:02.975673
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 18:35:04.199049
+
+[99] Log opened at 2024-10-21 18:36:11.752422
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 18:36:13.657864
+
+[99] Log opened at 2024-10-21 18:36:13.922079
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 18:36:14.604346
+
+[96] Log opened at 2024-10-21 18:36:15.228500
+[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96'
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] Log opened at 2024-10-21 18:36:15.228507
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[101] Log opened at 2024-10-21 18:36:15.246568
+[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101'
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:36:16.442576
+
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] Log closed at 2024-10-21 18:36:17.033756
+
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[101] Log closed at 2024-10-21 18:36:17.425820
+
+[92] Log opened at 2024-10-21 18:36:17.491684
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:36:19.087139
+
+[92] Log opened at 2024-10-21 18:36:19.138110
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:36:20.295018
+
+[76] Log opened at 2024-10-21 18:38:47.425597
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:38:49.383225
+
+[76] Log opened at 2024-10-21 18:38:49.679981
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:38:50.350540
+
+[76] Log opened at 2024-10-21 18:38:50.731519
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] Log opened at 2024-10-21 18:38:50.917816
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log opened at 2024-10-21 18:38:50.959349
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:38:52.143117
+
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:38:52.801711
+
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 18:38:53.190403
+
+[87] Log opened at 2024-10-21 18:38:53.248757
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:38:55.026541
+
+[87] Log opened at 2024-10-21 18:38:55.115712
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:38:56.323939
+
+[99] Log opened at 2024-10-21 18:39:08.450766
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 18:39:10.403753
+
+[99] Log opened at 2024-10-21 18:39:10.624651
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 18:39:11.303116
+
+[96] Log opened at 2024-10-21 18:39:11.773727
+[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96'
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[101] Log opened at 2024-10-21 18:39:11.881853
+[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101'
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] Log opened at 2024-10-21 18:39:11.890641
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[101] Log closed at 2024-10-21 18:39:12.965060
+
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[96] Log closed at 2024-10-21 18:39:13.598067
+
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:39:13.977462
+
+[101] Log opened at 2024-10-21 18:39:14.082607
+[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101'
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[101] Log closed at 2024-10-21 18:39:15.669377
+
+[101] Log opened at 2024-10-21 18:39:15.847761
+[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101'
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[101] Log closed at 2024-10-21 18:39:17.028642
+
+[76] Log opened at 2024-10-21 18:40:32.197375
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:40:34.131810
+
+[76] Log opened at 2024-10-21 18:40:34.483003
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:40:35.194405
+
+[104] Log opened at 2024-10-21 18:40:35.702287
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] Log opened at 2024-10-21 18:40:35.815807
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] Log opened at 2024-10-21 18:40:35.817379
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 18:40:36.959962
+
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 18:40:37.603018
+
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 18:40:37.969562
+
+[104] Log opened at 2024-10-21 18:40:38.035397
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 18:40:39.702619
+
+[104] Log opened at 2024-10-21 18:40:40.757844
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 18:40:41.946559
+
+[92] Log opened at 2024-10-21 18:42:14.061097
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:42:16.048695
+
+[92] Log opened at 2024-10-21 18:42:16.270075
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:42:16.934411
+
+[101] Log opened at 2024-10-21 18:42:17.393722
+[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101'
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] Log opened at 2024-10-21 18:42:17.534322
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] Log opened at 2024-10-21 18:42:17.536281
+[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105'
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 18:42:18.699653
+
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[101] Log closed at 2024-10-21 18:42:19.334837
+
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] Log closed at 2024-10-21 18:42:19.748208
+
+[102] Log opened at 2024-10-21 18:42:19.820212
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 18:42:21.559253
+
+[102] Log opened at 2024-10-21 18:42:21.629443
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 18:42:22.865851
+
+[99] Log opened at 2024-10-21 18:43:33.637908
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 18:43:35.862492
+
+[99] Log opened at 2024-10-21 18:43:36.156268
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 18:43:36.847543
+
+[92] Log opened at 2024-10-21 18:43:37.538285
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] Log opened at 2024-10-21 18:43:37.547504
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] Log opened at 2024-10-21 18:43:37.574413
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:43:38.693749
+
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:43:39.346235
+
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 18:43:39.743157
+
+[94] Log opened at 2024-10-21 18:43:39.830258
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 18:43:41.502480
+
+[92] Log opened at 2024-10-21 18:43:41.562032
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:43:42.790381
+
+[105] Log opened at 2024-10-21 18:44:33.859180
+[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105'
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] Log closed at 2024-10-21 18:44:35.908898
+
+[105] Log opened at 2024-10-21 18:44:36.159882
+[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105'
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] Log closed at 2024-10-21 18:44:36.833725
+
+[102] Log opened at 2024-10-21 18:44:37.268277
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] Log opened at 2024-10-21 18:44:37.384535
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[106] Log opened at 2024-10-21 18:44:37.390103
+[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106'
+[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:44:38.473309
+
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 18:44:39.162680
+
+[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[106] Log closed at 2024-10-21 18:44:39.578721
+
+[87] Log opened at 2024-10-21 18:44:39.651621
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:44:41.362031
+
+[87] Log opened at 2024-10-21 18:44:41.417455
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:44:42.639002
+
+[103] Log opened at 2024-10-21 18:45:43.374444
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 18:45:45.384060
+
+[103] Log opened at 2024-10-21 18:45:45.675400
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 18:45:46.358988
+
+[103] Log opened at 2024-10-21 18:45:46.947522
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] Log opened at 2024-10-21 18:45:47.027211
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] Log opened at 2024-10-21 18:45:47.027266
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:45:48.300453
+
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 18:45:48.948367
+
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 18:45:49.329319
+
+[76] Log opened at 2024-10-21 18:45:49.429121
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:45:51.204459
+
+[76] Log opened at 2024-10-21 18:45:52.027777
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:45:53.185458
+
+[92] Log opened at 2024-10-21 18:46:43.334662
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:46:45.296237
+
+[92] Log opened at 2024-10-21 18:46:45.517459
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:46:46.201597
+
+[92] Log opened at 2024-10-21 18:46:46.783191
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] Log opened at 2024-10-21 18:46:46.848598
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] Log opened at 2024-10-21 18:46:46.863284
+[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105'
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 18:46:48.081353
+
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:46:48.771019
+
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] Log closed at 2024-10-21 18:46:49.139199
+
+[99] Log opened at 2024-10-21 18:46:49.251564
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 18:46:50.964397
+
+[99] Log opened at 2024-10-21 18:46:51.722556
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 18:46:52.948479
+
+[102] Log opened at 2024-10-21 18:47:18.195761
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 18:47:20.106850
+
+[102] Log opened at 2024-10-21 18:47:20.343860
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 18:47:21.022595
+
+[102] Log opened at 2024-10-21 18:47:21.394805
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[106] Log opened at 2024-10-21 18:47:21.531436
+[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106'
+[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] Log opened at 2024-10-21 18:47:21.544407
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[106] Log closed at 2024-10-21 18:47:22.619929
+
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 18:47:23.281042
+
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:47:23.631086
+
+[106] Log opened at 2024-10-21 18:47:23.687091
+[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106'
+[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[106] Log closed at 2024-10-21 18:47:25.357463
+
+[106] Log opened at 2024-10-21 18:47:25.422851
+[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106'
+[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[106] Log closed at 2024-10-21 18:47:26.642886
+
+[76] Log opened at 2024-10-21 18:48:48.805980
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:48:50.741858
+
+[76] Log opened at 2024-10-21 18:48:50.999751
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:48:51.674556
+
+[92] Log opened at 2024-10-21 18:48:51.988733
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] Log opened at 2024-10-21 18:48:52.190457
+[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105'
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] Log opened at 2024-10-21 18:48:52.208371
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] Log closed at 2024-10-21 18:48:53.296710
+
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:48:53.957369
+
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 18:48:54.317404
+
+[105] Log opened at 2024-10-21 18:48:54.372691
+[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105'
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] Log closed at 2024-10-21 18:48:55.981254
+
+[105] Log opened at 2024-10-21 18:48:56.042671
+[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105'
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] Log closed at 2024-10-21 18:48:57.241776
+
+[94] Log opened at 2024-10-21 18:50:40.937397
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 18:50:42.965823
+
+[94] Log opened at 2024-10-21 18:50:43.188710
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 18:50:43.851772
+
+[104] Log opened at 2024-10-21 18:50:44.285727
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] Log opened at 2024-10-21 18:50:44.350340
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] Log opened at 2024-10-21 18:50:44.366747
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 18:50:45.517721
+
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 18:50:46.187459
+
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 18:50:46.592680
+
+[103] Log opened at 2024-10-21 18:50:46.645162
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 18:50:48.339274
+
+[103] Log opened at 2024-10-21 18:50:48.397967
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 18:50:49.647875
+
+[102] Log opened at 2024-10-21 18:51:19.210334
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] Log opened at 2024-10-21 18:51:21.071908
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 18:51:21.158959
+
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:51:23.113124
+
+[87] Log opened at 2024-10-21 18:51:23.334890
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:51:23.989207
+
+[106] Log opened at 2024-10-21 18:51:24.457982
+[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106'
+[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] Log opened at 2024-10-21 18:51:24.483129
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] Log opened at 2024-10-21 18:51:24.483732
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:51:25.577767
+
+[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[106] Log closed at 2024-10-21 18:51:26.265988
+
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:51:26.620464
+
+[76] Log opened at 2024-10-21 18:51:26.704909
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:51:28.387870
+
+[76] Log opened at 2024-10-21 18:51:28.441162
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:51:29.648835
+
+[105] Log opened at 2024-10-21 18:51:50.730411
+[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105'
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] Log closed at 2024-10-21 18:51:52.762798
+
+[105] Log opened at 2024-10-21 18:51:53.036230
+[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105'
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] Log closed at 2024-10-21 18:51:53.730577
+
+[103] Log opened at 2024-10-21 18:51:54.212376
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] Log opened at 2024-10-21 18:51:54.254613
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] Log opened at 2024-10-21 18:51:54.271918
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:51:55.310231
+
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 18:51:56.007704
+
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 18:51:56.367504
+
+[87] Log opened at 2024-10-21 18:51:56.427935
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:51:58.094542
+
+[87] Log opened at 2024-10-21 18:51:58.654614
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:51:59.877931
+
+[92] Log opened at 2024-10-21 18:52:51.442075
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:52:53.589613
+
+[92] Log opened at 2024-10-21 18:52:53.809347
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:52:54.470015
+
+[76] Log opened at 2024-10-21 18:52:54.881674
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] Log opened at 2024-10-21 18:52:55.072521
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] Log opened at 2024-10-21 18:52:55.073587
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 18:52:56.142163
+
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:52:56.781723
+
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 18:52:57.147690
+
+[107] Log opened at 2024-10-21 18:52:57.216960
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 18:52:58.877766
+
+[107] Log opened at 2024-10-21 18:52:58.920153
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 18:53:00.098525
+
+[94] Log opened at 2024-10-21 18:53:38.819298
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 18:53:40.753947
+
+[94] Log opened at 2024-10-21 18:53:40.974961
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 18:53:41.634237
+
+[102] Log opened at 2024-10-21 18:53:41.938840
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log opened at 2024-10-21 18:53:42.179944
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] Log opened at 2024-10-21 18:53:42.179943
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 18:53:43.319399
+
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 18:53:44.033147
+
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 18:53:44.390432
+
+[103] Log opened at 2024-10-21 18:53:44.448104
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 18:53:46.186444
+
+[103] Log opened at 2024-10-21 18:53:46.253132
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 18:53:47.427649
+
+[92] Log opened at 2024-10-21 18:55:27.252016
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log opened at 2024-10-21 18:55:28.054619
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:55:29.474034
+
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:55:30.762609
+
+[76] Log opened at 2024-10-21 18:55:30.984490
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:55:31.654267
+
+[99] Log opened at 2024-10-21 18:55:32.123259
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] Log opened at 2024-10-21 18:55:32.160612
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] Log opened at 2024-10-21 18:55:32.164453
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 18:55:33.257120
+
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 18:55:33.876302
+
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:55:34.237471
+
+[107] Log opened at 2024-10-21 18:55:34.310128
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 18:55:35.960098
+
+[107] Log opened at 2024-10-21 18:55:35.999620
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 18:55:37.173362
+
+[105] Log opened at 2024-10-21 18:55:56.431820
+[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105'
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] Log closed at 2024-10-21 18:55:58.386915
+
+[105] Log opened at 2024-10-21 18:55:58.589476
+[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105'
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] Log closed at 2024-10-21 18:55:59.250014
+
+[94] Log opened at 2024-10-21 18:55:59.606677
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] Log opened at 2024-10-21 18:55:59.717825
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] Log opened at 2024-10-21 18:55:59.721383
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 18:56:00.797634
+
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 18:56:01.406453
+
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 18:56:01.774928
+
+[102] Log opened at 2024-10-21 18:56:01.893820
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 18:56:03.553943
+
+[102] Log opened at 2024-10-21 18:56:03.598821
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 18:56:04.870749
+
+[92] Log opened at 2024-10-21 18:56:32.240624
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:56:34.228392
+
+[92] Log opened at 2024-10-21 18:56:34.455477
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:56:35.123781
+
+[99] Log opened at 2024-10-21 18:56:35.425715
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log opened at 2024-10-21 18:56:35.641800
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] Log opened at 2024-10-21 18:56:35.641853
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:56:36.781124
+
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 18:56:37.447481
+
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:56:37.800533
+
+[76] Log opened at 2024-10-21 18:56:37.862350
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:56:39.544871
+
+[76] Log opened at 2024-10-21 18:56:39.643125
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:56:40.812654
+
+[103] Log opened at 2024-10-21 18:57:07.126207
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 18:57:09.022017
+
+[103] Log opened at 2024-10-21 18:57:09.205596
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 18:57:09.864017
+
+[94] Log opened at 2024-10-21 18:57:10.271926
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] Log opened at 2024-10-21 18:57:10.288594
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] Log opened at 2024-10-21 18:57:10.289116
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 18:57:11.364055
+
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 18:57:12.010806
+
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 18:57:12.378464
+
+[104] Log opened at 2024-10-21 18:57:12.430648
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 18:57:14.126037
+
+[104] Log opened at 2024-10-21 18:57:14.180922
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 18:57:15.400883
+
+[105] Log opened at 2024-10-21 18:57:34.077156
+[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105'
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] Log closed at 2024-10-21 18:57:36.063720
+
+[99] Log opened at 2024-10-21 18:57:36.295096
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 18:57:36.961293
+
+[99] Log opened at 2024-10-21 18:57:37.490102
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] Log opened at 2024-10-21 18:57:37.535732
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] Log opened at 2024-10-21 18:57:37.554119
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:57:38.639817
+
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 18:57:39.292170
+
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:57:39.654979
+
+[87] Log opened at 2024-10-21 18:57:39.735725
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:57:41.599264
+
+[87] Log opened at 2024-10-21 18:57:41.637352
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:57:42.868504
+
+[92] Log opened at 2024-10-21 18:58:02.520644
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:58:04.546793
+
+[92] Log opened at 2024-10-21 18:58:04.705461
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:58:05.375018
+
+[107] Log opened at 2024-10-21 18:58:05.871045
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] Log opened at 2024-10-21 18:58:05.907838
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] Log opened at 2024-10-21 18:58:05.912950
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 18:58:07.008909
+
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:58:07.351670
+
+[103] Log opened at 2024-10-21 18:58:07.412615
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 18:58:08.064171
+
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 18:58:09.047975
+
+[103] Log opened at 2024-10-21 18:58:09.097880
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 18:58:10.263780
+
+[94] Log opened at 2024-10-21 18:58:16.487026
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 18:58:18.481748
+
+[94] Log opened at 2024-10-21 18:58:18.678481
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 18:58:19.330744
+
+[102] Log opened at 2024-10-21 18:58:19.722089
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] Log opened at 2024-10-21 18:58:19.838272
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] Log opened at 2024-10-21 18:58:19.840465
+[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105'
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 18:58:20.922338
+
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 18:58:21.609581
+
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] Log closed at 2024-10-21 18:58:21.965591
+
+[104] Log opened at 2024-10-21 18:58:22.018214
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 18:58:23.635445
+
+[104] Log opened at 2024-10-21 18:58:23.689981
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 18:58:24.895776
+
+[87] Log opened at 2024-10-21 18:58:30.852865
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:58:32.818276
+
+[87] Log opened at 2024-10-21 18:58:33.025250
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:58:33.681276
+
+[92] Log opened at 2024-10-21 18:58:33.969967
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log opened at 2024-10-21 18:58:34.258131
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] Log opened at 2024-10-21 18:58:34.258132
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 18:58:35.358325
+
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 18:58:35.981477
+
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 18:58:36.336862
+
+[103] Log opened at 2024-10-21 18:58:36.387999
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 18:58:38.164792
+
+[103] Log opened at 2024-10-21 18:58:38.211930
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 18:58:39.402762
+
+[99] Log opened at 2024-10-21 18:59:22.729205
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 18:59:24.672127
+
+[99] Log opened at 2024-10-21 18:59:24.890517
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 18:59:25.582578
+
+[102] Log opened at 2024-10-21 18:59:25.980208
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] Log opened at 2024-10-21 18:59:26.029608
+[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105'
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] Log opened at 2024-10-21 18:59:26.038987
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] Log closed at 2024-10-21 18:59:27.119092
+
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 18:59:27.755978
+
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 18:59:28.137973
+
+[105] Log opened at 2024-10-21 18:59:28.201041
+[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105'
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] Log closed at 2024-10-21 18:59:29.893394
+
+[105] Log opened at 2024-10-21 18:59:29.933120
+[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105'
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] Log closed at 2024-10-21 18:59:31.119109
+
+[104] Log opened at 2024-10-21 18:59:50.176849
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 18:59:52.178997
+
+[104] Log opened at 2024-10-21 18:59:52.418689
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 18:59:53.092483
+
+[87] Log opened at 2024-10-21 18:59:53.477598
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log opened at 2024-10-21 18:59:53.693877
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[76] Log opened at 2024-10-21 18:59:53.693989
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 18:59:54.755806
+
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 18:59:55.421003
+
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 18:59:55.837488
+
+[94] Log opened at 2024-10-21 18:59:55.903963
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 18:59:57.599821
+
+[94] Log opened at 2024-10-21 18:59:57.635004
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 18:59:58.887710
+
+[107] Log opened at 2024-10-21 19:00:17.164444
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 19:00:19.092384
+
+[107] Log opened at 2024-10-21 19:00:19.266907
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 19:00:19.925917
+
+[103] Log opened at 2024-10-21 19:00:20.281693
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] Log opened at 2024-10-21 19:00:20.426752
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] Log opened at 2024-10-21 19:00:20.429945
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 19:00:21.486227
+
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 19:00:22.118438
+
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 19:00:22.478473
+
+[102] Log opened at 2024-10-21 19:00:22.549315
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 19:00:24.200667
+
+[102] Log opened at 2024-10-21 19:00:24.250524
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 19:00:25.441767
+
+[99] Log opened at 2024-10-21 19:00:39.172911
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 19:00:41.180123
+
+[99] Log opened at 2024-10-21 19:00:41.345543
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 19:00:42.033046
+
+[105] Log opened at 2024-10-21 19:00:42.372312
+[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105'
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] Log opened at 2024-10-21 19:00:42.473253
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] Log opened at 2024-10-21 19:00:42.473416
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 19:00:43.581278
+
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] Log closed at 2024-10-21 19:00:44.331362
+
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 19:00:44.733442
+
+[104] Log opened at 2024-10-21 19:00:44.792325
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 19:00:46.445388
+
+[104] Log opened at 2024-10-21 19:00:47.553718
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 19:00:48.761991
+
+[94] Log opened at 2024-10-21 19:03:42.859658
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 19:03:44.820298
+
+[94] Log opened at 2024-10-21 19:03:45.015997
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 19:03:45.698573
+
+[103] Log opened at 2024-10-21 19:03:46.026739
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] Log opened at 2024-10-21 19:03:46.216348
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] Log opened at 2024-10-21 19:03:46.220393
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 19:03:47.297338
+
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 19:03:47.916374
+
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 19:03:48.283131
+
+[107] Log opened at 2024-10-21 19:03:48.360954
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 19:03:50.096072
+
+[107] Log opened at 2024-10-21 19:03:50.140662
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 19:03:51.391454
+
+[99] Log opened at 2024-10-21 19:05:13.807910
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 19:05:15.673008
+
+[99] Log opened at 2024-10-21 19:05:15.871706
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 19:05:16.558582
+
+[99] Log opened at 2024-10-21 19:05:17.305894
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] Log opened at 2024-10-21 19:05:17.503098
+[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105'
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log opened at 2024-10-21 19:05:17.508899
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] Log closed at 2024-10-21 19:05:18.746008
+
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 19:05:19.394170
+
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 19:05:19.774489
+
+[104] Log opened at 2024-10-21 19:05:39.821290
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 19:05:41.467451
+
+[104] Log opened at 2024-10-21 19:05:41.797364
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 19:05:42.976102
+
+[94] Log opened at 2024-10-21 19:05:53.896624
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 19:05:55.960551
+
+[94] Log opened at 2024-10-21 19:05:56.212263
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 19:05:56.904218
+
+[94] Log opened at 2024-10-21 19:05:57.598736
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] Log opened at 2024-10-21 19:05:57.766474
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] Log opened at 2024-10-21 19:05:57.766606
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 19:05:58.969903
+
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 19:05:59.596432
+
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 19:05:59.959622
+
+[87] Log opened at 2024-10-21 19:06:00.077318
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 19:06:01.717544
+
+[87] Log opened at 2024-10-21 19:06:02.911445
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 19:06:04.121315
+
+[107] Log opened at 2024-10-21 19:08:14.198898
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 19:08:16.099513
+
+[107] Log opened at 2024-10-21 19:08:16.296177
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 19:08:16.955745
+
+[105] Log opened at 2024-10-21 19:08:17.308001
+[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105'
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] Log opened at 2024-10-21 19:08:17.489242
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] Log opened at 2024-10-21 19:08:17.489258
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 19:08:18.647245
+
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] Log closed at 2024-10-21 19:08:19.341119
+
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 19:08:19.698959
+
+[99] Log opened at 2024-10-21 19:08:19.758468
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 19:08:21.531540
+
+[99] Log opened at 2024-10-21 19:08:21.573205
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 19:08:22.766116
+
+[92] Log opened at 2024-10-21 19:09:00.453007
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 19:09:02.545745
+
+[92] Log opened at 2024-10-21 19:09:02.718084
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 19:09:03.376798
+
+[104] Log opened at 2024-10-21 19:09:03.741644
+[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104'
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] Log opened at 2024-10-21 19:09:03.831085
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] Log opened at 2024-10-21 19:09:03.832177
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 19:09:05.012841
+
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[104] Log closed at 2024-10-21 19:09:05.658508
+
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 19:09:06.005873
+
+[102] Log opened at 2024-10-21 19:09:06.068321
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 19:09:07.789507
+
+[102] Log opened at 2024-10-21 19:09:07.831197
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 19:09:09.031284
+
+[76] Log opened at 2024-10-21 19:09:27.874851
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 19:09:29.823747
+
+[76] Log opened at 2024-10-21 19:09:30.049743
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 19:09:30.762856
+
+[87] Log opened at 2024-10-21 19:09:31.291698
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] Log opened at 2024-10-21 19:09:31.330442
+[107] Log opened at 2024-10-21 19:09:31.330441
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 19:09:32.431311
+
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 19:09:33.060056
+
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 19:09:33.437489
+
+[92] Log opened at 2024-10-21 19:09:33.502063
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 19:09:35.188204
+
+[87] Log opened at 2024-10-21 19:09:35.231189
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 19:09:36.398626
+
+[103] Log opened at 2024-10-21 19:09:52.648662
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 19:09:54.546918
+
+[103] Log opened at 2024-10-21 19:09:54.771811
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 19:09:55.439605
+
+[102] Log opened at 2024-10-21 19:09:55.792978
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] Log opened at 2024-10-21 19:09:55.978419
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] Log opened at 2024-10-21 19:09:55.986393
+[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108'
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 19:09:57.073908
+
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 19:09:57.684367
+
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] Log closed at 2024-10-21 19:09:58.075193
+
+[94] Log opened at 2024-10-21 19:09:58.130410
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 19:09:59.837832
+
+[94] Log opened at 2024-10-21 19:09:59.873989
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 19:10:01.033732
+
+[105] Log opened at 2024-10-21 19:11:51.254800
+[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105'
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] Log closed at 2024-10-21 19:11:53.189747
+
+[105] Log opened at 2024-10-21 19:11:53.424144
+[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105'
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] Log closed at 2024-10-21 19:11:54.075303
+
+[99] Log opened at 2024-10-21 19:11:54.464426
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] Log opened at 2024-10-21 19:11:54.657314
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] Log opened at 2024-10-21 19:11:54.657314
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 19:11:55.754333
+
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 19:11:56.406570
+
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 19:11:56.768793
+
+[107] Log opened at 2024-10-21 19:11:56.840479
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 19:11:58.560402
+
+[107] Log opened at 2024-10-21 19:11:58.611493
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 19:11:59.860240
+
+[103] Log opened at 2024-10-21 19:14:10.607834
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 19:14:13.279330
+
+[103] Log opened at 2024-10-21 19:14:13.620264
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 19:14:14.332229
+
+[102] Log opened at 2024-10-21 19:14:14.743833
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log opened at 2024-10-21 19:14:15.079340
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] Log opened at 2024-10-21 19:14:15.082747
+[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108'
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 19:14:16.206473
+
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 19:14:16.883152
+
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] Log closed at 2024-10-21 19:14:17.261079
+
+[102] Log opened at 2024-10-21 19:14:17.314605
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 19:14:18.931490
+
+[102] Log opened at 2024-10-21 19:14:18.982752
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 19:14:20.146740
+
+[94] Log opened at 2024-10-21 19:15:34.798346
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 19:15:36.658238
+
+[94] Log opened at 2024-10-21 19:15:36.886565
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 19:15:37.561154
+
+[94] Log opened at 2024-10-21 19:15:38.251985
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] Log opened at 2024-10-21 19:15:38.438447
+[105] Log opened at 2024-10-21 19:15:38.438447
+[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105'
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 19:15:39.514534
+
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 19:15:40.155405
+
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] Log closed at 2024-10-21 19:15:40.548065
+
+[76] Log opened at 2024-10-21 19:15:40.676129
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 19:15:42.384146
+
+[76] Log opened at 2024-10-21 19:15:42.465571
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 19:15:43.639462
+
+[92] Log opened at 2024-10-21 19:22:15.956515
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 19:22:17.847089
+
+[92] Log opened at 2024-10-21 19:22:18.116584
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 19:22:18.801252
+
+[92] Log opened at 2024-10-21 19:22:19.919123
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log opened at 2024-10-21 19:22:20.128524
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] Log opened at 2024-10-21 19:22:20.134452
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 19:22:21.303219
+
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 19:22:21.939364
+
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 19:22:22.289006
+
+[107] Log opened at 2024-10-21 19:22:22.408386
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 19:22:24.059536
+
+[107] Log opened at 2024-10-21 19:22:24.131090
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 19:22:25.320783
+
+[102] Log opened at 2024-10-21 19:24:19.093231
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 19:24:20.928294
+
+[102] Log opened at 2024-10-21 19:24:21.223831
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 19:24:21.900044
+
+[102] Log opened at 2024-10-21 19:24:22.535089
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log opened at 2024-10-21 19:24:22.745071
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] Log opened at 2024-10-21 19:24:22.746325
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 19:24:23.907752
+
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 19:24:24.548069
+
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 19:24:24.907076
+
+[99] Log opened at 2024-10-21 19:24:25.043749
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 19:24:26.730777
+
+[108] Log opened at 2024-10-21 19:27:04.423674
+[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108'
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] Log closed at 2024-10-21 19:27:05.678975
+
+[108] Log opened at 2024-10-21 19:27:06.893591
+[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108'
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] Log closed at 2024-10-21 19:27:08.820724
+
+[108] Log opened at 2024-10-21 19:27:09.027322
+[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108'
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] Log closed at 2024-10-21 19:27:09.691799
+
+[108] Log opened at 2024-10-21 19:27:10.107059
+[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108'
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] Log opened at 2024-10-21 19:27:10.284817
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] Log opened at 2024-10-21 19:27:10.286960
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 19:27:11.368192
+
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] Log closed at 2024-10-21 19:27:11.981605
+
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 19:27:12.327815
+
+[92] Log opened at 2024-10-21 19:27:12.397851
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 19:27:13.959199
+
+[92] Log opened at 2024-10-21 19:27:13.999739
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 19:27:15.212471
+
+[105] Log opened at 2024-10-21 19:28:10.055913
+[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105'
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] Log closed at 2024-10-21 19:28:12.081597
+
+[105] Log opened at 2024-10-21 19:28:12.346849
+[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105'
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] Log closed at 2024-10-21 19:28:13.018734
+
+[105] Log opened at 2024-10-21 19:28:13.377293
+[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105'
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] Log opened at 2024-10-21 19:28:13.563281
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log opened at 2024-10-21 19:28:13.588743
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 19:28:14.663346
+
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[105] Log closed at 2024-10-21 19:28:15.252004
+
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 19:28:15.598099
+
+[103] Log opened at 2024-10-21 19:28:15.670925
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 19:28:17.358652
+
+[103] Log opened at 2024-10-21 19:28:17.399279
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 19:28:18.609218
+
+[94] Log opened at 2024-10-21 19:28:30.299477
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 19:28:32.269530
+
+[94] Log opened at 2024-10-21 19:28:32.520365
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 19:28:33.202365
+
+[99] Log opened at 2024-10-21 19:28:33.790040
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] Log opened at 2024-10-21 19:28:33.883869
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] Log opened at 2024-10-21 19:28:33.885041
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 19:28:35.188027
+
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 19:28:35.816123
+
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 19:28:36.212021
+
+[107] Log opened at 2024-10-21 19:28:36.266530
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 19:28:37.955740
+
+[99] Log opened at 2024-10-21 19:28:38.015680
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 19:28:39.176913
+
+[76] Log opened at 2024-10-21 19:29:07.117834
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 19:29:09.208893
+
+[76] Log opened at 2024-10-21 19:29:09.440161
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 19:29:10.096753
+
+[76] Log opened at 2024-10-21 19:29:10.457885
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] Log opened at 2024-10-21 19:29:10.642901
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] Log opened at 2024-10-21 19:29:10.643009
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 19:29:11.740808
+
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 19:29:12.317162
+
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 19:29:12.674783
+
+[103] Log opened at 2024-10-21 19:29:12.742091
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 19:29:14.426565
+
+[103] Log opened at 2024-10-21 19:29:14.482693
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 19:29:15.665177
+
+[87] Log opened at 2024-10-21 19:32:26.698612
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 19:32:28.646653
+
+[87] Log opened at 2024-10-21 19:32:28.876299
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 19:32:29.538577
+
+[92] Log opened at 2024-10-21 19:32:29.936516
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] Log opened at 2024-10-21 19:32:30.119641
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] Log opened at 2024-10-21 19:32:30.119793
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 19:32:31.265547
+
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 19:32:31.861897
+
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 19:32:32.233400
+
+[107] Log opened at 2024-10-21 19:32:32.290409
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 19:32:34.021977
+
+[107] Log opened at 2024-10-21 19:32:34.058537
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 19:32:35.191476
+
+[109] Log opened at 2024-10-21 19:34:35.768477
+[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109'
+[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[109] Log closed at 2024-10-21 19:34:37.618275
+
+[109] Log opened at 2024-10-21 19:34:37.851127
+[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109'
+[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[109] Log closed at 2024-10-21 19:34:38.542581
+
+[76] Log opened at 2024-10-21 19:34:38.898805
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log opened at 2024-10-21 19:34:39.110375
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[109] Log opened at 2024-10-21 19:34:39.125659
+[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109'
+[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 19:34:40.195616
+
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 19:34:40.806451
+
+[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[109] Log closed at 2024-10-21 19:34:41.149540
+
+[102] Log opened at 2024-10-21 19:34:41.205755
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 19:34:42.858046
+
+[102] Log opened at 2024-10-21 19:34:42.897744
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 19:34:44.102636
+
+[103] Log opened at 2024-10-21 19:36:33.284166
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 19:36:35.216171
+
+[103] Log opened at 2024-10-21 19:36:35.436080
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 19:36:36.104982
+
+[108] Log opened at 2024-10-21 19:36:36.477476
+[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108'
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log opened at 2024-10-21 19:36:36.686133
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] Log opened at 2024-10-21 19:36:36.691014
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 19:36:37.741733
+
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] Log closed at 2024-10-21 19:36:38.365496
+
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 19:36:38.712160
+
+[94] Log opened at 2024-10-21 19:36:38.784059
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 19:36:40.488190
+
+[94] Log opened at 2024-10-21 19:36:40.537896
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 19:36:41.777593
+
+[107] Log opened at 2024-10-21 19:39:16.203271
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 19:39:18.118168
+
+[107] Log opened at 2024-10-21 19:39:18.312557
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 19:39:19.023669
+
+[107] Log opened at 2024-10-21 19:39:19.683586
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[109] Log opened at 2024-10-21 19:39:19.885275
+[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109'
+[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] Log opened at 2024-10-21 19:39:19.885258
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 19:39:21.087837
+
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 19:39:21.750499
+
+[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[109] Log closed at 2024-10-21 19:39:22.105899
+
+[76] Log opened at 2024-10-21 19:39:22.236448
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 19:39:23.878208
+
+[76] Log opened at 2024-10-21 19:39:24.947745
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 19:39:26.131729
+
+[99] Log opened at 2024-10-21 19:55:05.437029
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 19:55:07.440262
+
+[99] Log opened at 2024-10-21 19:55:07.668649
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 19:55:08.349945
+
+[108] Log opened at 2024-10-21 19:55:08.858355
+[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108'
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log opened at 2024-10-21 19:55:09.059971
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] Log opened at 2024-10-21 19:55:09.060780
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 19:55:10.181715
+
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] Log closed at 2024-10-21 19:55:10.828662
+
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 19:55:11.214409
+
+[92] Log opened at 2024-10-21 19:55:11.279243
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 19:55:12.931817
+
+[92] Log opened at 2024-10-21 19:55:12.971306
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] Log opened at 2024-10-21 19:55:13.058046
+[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108'
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] Log opened at 2024-10-21 19:55:13.098199
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] Log opened at 2024-10-21 19:55:13.141405
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 19:55:14.299956
+
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] Log closed at 2024-10-21 19:55:30.313290
+
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 19:55:47.913370
+
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 19:56:03.901997
+
+[103] Log opened at 2024-10-21 19:56:11.007714
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 19:56:12.986324
+
+[103] Log opened at 2024-10-21 19:56:13.218294
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 19:56:13.885788
+
+[107] Log opened at 2024-10-21 19:56:14.254498
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] Log opened at 2024-10-21 19:56:14.435718
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[109] Log opened at 2024-10-21 19:56:14.435719
+[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109'
+[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[109] Log closed at 2024-10-21 19:56:15.576523
+
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 19:56:16.227401
+
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 19:56:16.580003
+
+[109] Log opened at 2024-10-21 19:56:16.636983
+[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109'
+[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[109] Log closed at 2024-10-21 19:56:18.251625
+
+[109] Log opened at 2024-10-21 19:56:18.719862
+[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109'
+[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[109] Log closed at 2024-10-21 19:56:19.967358
+
+[109] Log opened at 2024-10-21 19:56:20.857359
+[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109'
+[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log opened at 2024-10-21 19:56:22.999754
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log opened at 2024-10-21 19:56:26.085129
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[109] Log closed at 2024-10-21 19:56:37.947563
+
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 19:56:52.763990
+
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 19:57:09.539479
+
+[92] Log opened at 2024-10-21 20:02:32.214482
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 20:02:34.198018
+
+[92] Log opened at 2024-10-21 20:02:34.523306
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 20:02:35.203753
+
+[107] Log opened at 2024-10-21 20:02:35.746872
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] Log opened at 2024-10-21 20:02:35.917817
+[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108'
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] Log opened at 2024-10-21 20:02:35.935311
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] Log closed at 2024-10-21 20:02:37.098441
+
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 20:02:37.750152
+
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 20:02:38.113893
+
+[99] Log opened at 2024-10-21 20:02:38.169846
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 20:02:39.858942
+
+[107] Log opened at 2024-10-21 20:02:39.898754
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] Log opened at 2024-10-21 20:02:39.967861
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] Log opened at 2024-10-21 20:02:39.987090
+[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108'
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] Log opened at 2024-10-21 20:02:40.030228
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 20:02:41.275076
+
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-21 20:02:55.905890
+
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 20:03:12.621806
+
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] Log closed at 2024-10-21 20:03:28.956800
+
+[76] Log opened at 2024-10-21 20:03:39.837783
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 20:03:41.898892
+
+[76] Log opened at 2024-10-21 20:03:42.141963
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 20:03:42.819255
+
+[94] Log opened at 2024-10-21 20:03:43.252015
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log opened at 2024-10-21 20:03:43.537746
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] Log opened at 2024-10-21 20:03:43.537924
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 20:03:44.812243
+
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 20:03:45.492957
+
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 20:03:45.854838
+
+[102] Log opened at 2024-10-21 20:03:45.920619
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 20:03:47.633676
+
+[102] Log opened at 2024-10-21 20:03:47.680203
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] Log opened at 2024-10-21 20:03:47.763390
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] Log opened at 2024-10-21 20:03:47.784448
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] Log opened at 2024-10-21 20:03:47.839699
+[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110'
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 20:03:48.971079
+
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-21 20:04:04.382651
+
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-21 20:04:20.164720
+
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] Log closed at 2024-10-21 20:04:36.670012
+
+[92] Log opened at 2024-10-21 20:05:05.989272
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 20:05:11.155374
+
+[87] Log opened at 2024-10-21 20:05:29.896402
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 20:05:35.000228
+
+[107] Log opened at 2024-10-21 20:05:36.367190
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 20:05:41.342474
+
+[103] Log opened at 2024-10-21 20:06:10.869252
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 20:06:15.842478
+
+[102] Log opened at 2024-10-21 20:06:48.082305
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1571
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2254
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error"
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error"
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error"
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- run -i 16
+[102] [Step Debug] ->
+
+[102] [Step Debug] ->
+
+[102] [Step Debug] ->
+
+[102] [Step Debug] ->
+
+[102] [Step Debug] ->
+
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 17
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 18 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 20 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 21 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 22 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 23 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 24
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 25
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 26
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 27 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 28 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 29 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 30 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 31
+[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] <- stack_get -i 34
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 35 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 36 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 37 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 38 -n "$datos_papel" -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] <- stack_get -i 43
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 44 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 45 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 46 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 47 -n "$datos_papel" -d 0 -c 0
+[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] <- property_get -i 52 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 53 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 54 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 55 -n "$datos_papel" -d 0 -c 0
+[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] <- property_get -i 60 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 61 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 62 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 63 -n "$datos_papel" -d 0 -c 0
+[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] <- property_get -i 68 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 69 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 70 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 71 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 72
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 73 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 74 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 75
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 76 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 77 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 78 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 79 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 80 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 81 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 82
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 83
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 84 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 85 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 86 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 87 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 88 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 89 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 90
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 91
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 92 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 93 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 94 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 95 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 96 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 97 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 98
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 99
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 100 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 101 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 102 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 103 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 104 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 105 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 106
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 107
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 108 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 109 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 110 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 111 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 112 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 113 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 114
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 115
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 116 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 117 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 118 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 119 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 120 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 121 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 122
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 123
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 124 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 125 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 126 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 127 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 128 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 129 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 130
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 131
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 132
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 133 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 134 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 135 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 136 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 137 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 138 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 139
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 140
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 141 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 142 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 143 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 144 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 145 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 146 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 147
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 148
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 149
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 150 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 151 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 152 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 153 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 154 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 155 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 156
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 157
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 158 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 159 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 160 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 161 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 162 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 163 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 164
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 165
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 166 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 167 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 168 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 169 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 170 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 171 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 172
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 173
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 174 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 175 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 176 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 177 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 178 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 179 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 180
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 181
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 182 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 183 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 184 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 185 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 186 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 187 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 188
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 189
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 190 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 191 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 192 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 193 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 194 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 195 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 196
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 197
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 198 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 199 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 200 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 201 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 202 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 203 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 204
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 205
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 206 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 207 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 208 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 209 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 210 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 211 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 212
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 213
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 214 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 215 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 216 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 217 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 218 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 219 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 220
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 221
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 222 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 223 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 224 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 225 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 226 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 227 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 228
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 229
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 230
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 231 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 232 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 233 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 234 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 235 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 236 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 237
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 238
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 239 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 240 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 241 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 242 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 243 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 244 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 245
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 246
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 247 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 248 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 249 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 250 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 251 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 252 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 253
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 254
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 255 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 256 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 257 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 258 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 259 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 260 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 261
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 262
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 263 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 264 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 265 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 266 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 267 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 268 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 269
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 270
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 271 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 272 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 273 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 274 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 275 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 276 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 277
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 278
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 279 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 280 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 281 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 282 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 283 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 284 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 285
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 286
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 287
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 288 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 289 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 290 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 291 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 292
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 293
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 294 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 295
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 296 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 297 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 298 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 299
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 300 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 301 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 302 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 303 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 304
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 305
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 306 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 307 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 308 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 309 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 310
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 311
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 312 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 313 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 314 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 315 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 316 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 317 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 318
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 319
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 320 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 321 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 322 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 323 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 324
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 325
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 326 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 327 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 328 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 329 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 330
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 331
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 332 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 333 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 334 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 335 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 336
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 337
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 338 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 339 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 340 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 341 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 342
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 343
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 344 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 345 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 346 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 347 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 348
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 349
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 350 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 351 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 352 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 353 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 354
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 355
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 356 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 357 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 358 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 359 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 360 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 361 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 362
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 363
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 364 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 365 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 366 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 367 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 368
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 369
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 370 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 371 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 372 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 373 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 374
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 375
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 376 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 377 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 378 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 379 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 380
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 381 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 382 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 383
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 384
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 385 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 386 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 387 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 388 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 389 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 390 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 391
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 392
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 393 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 394 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 395 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 396 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 397 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 398 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 399
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 400
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 401 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 402 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 403 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 404 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 405 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 406 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 407
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 408
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 409 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 410 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 411 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 412 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 413
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 414
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 415 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 416 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 417 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 418 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- step_over -i 419
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 420
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 421 -n "$datos_entrada" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 422 -n "$data" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 423 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- property_get -i 424 -n "$datos_papel" -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 425 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 426 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- run -i 427
+[102] [Step Debug] ->
+
+[102] Log closed at 2024-10-21 20:07:32.606137
+
+[94] Log opened at 2024-10-21 20:07:44.376126
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] ->
+
+[94] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1571
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2254
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error"
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error"
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error"
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- run -i 16
+[94] [Step Debug] ->
+
+[94] [Step Debug] ->
+
+[94] [Step Debug] ->
+
+[94] [Step Debug] ->
+
+[94] [Step Debug] ->
+
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- stack_get -i 17
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 18 -n "$datos_entrada" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 20 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- property_get -i 21 -n "$datos_papel" -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- context_names -i 22 -d 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- context_get -i 23 -d 0 -c 0
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- run -i 24
+[94] [Step Debug] ->
+
+[94] Log closed at 2024-10-21 20:07:49.564896
+
+[76] Log opened at 2024-10-21 20:08:53.192774
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 442
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1571
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2254
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error"
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error"
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error"
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- run -i 17
+[76] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- stack_get -i 18
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 19 -n "$datos_entrada" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 20 -n "$data" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 21 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 22 -n "$datos_papel" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_names -i 23 -d 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_get -i 24 -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_remove -i 25 -d 760058
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- run -i 26
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- stack_get -i 27
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 28 -n "$datos_entrada" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 29 -n "$data" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 30 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- property_get -i 31 -n "$datos_papel" -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_names -i 32 -d 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_get -i 33 -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 34 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360
+[76] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- run -i 35
+[76] [Step Debug] ->
+
+[76] Log closed at 2024-10-21 20:09:15.457099
+
+[110] Log opened at 2024-10-21 20:10:41.042616
+[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110'
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 442
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 634
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 831
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2259
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error"
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error"
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error"
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- run -i 17
+[110] [Step Debug] ->
+
+[110] [Step Debug] ->
+
+[110] [Step Debug] ->
+
+[110] [Step Debug] ->
+
+[110] [Step Debug] ->
+
+[110] [Step Debug] ->
+
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- stack_get -i 18
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- property_get -i 19 -n "$datos_entrada" -d 0 -c 0
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- property_get -i 20 -n "$data" -d 0 -c 0
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- property_get -i 21 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- property_get -i 22 -n "$datos_papel" -d 0 -c 0
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- context_names -i 23 -d 0
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- context_get -i 24 -d 0 -c 0
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_remove -i 25 -d 1100002
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- run -i 26
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- stack_get -i 27
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- property_get -i 28 -n "$datos_entrada" -d 0 -c 0
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- property_get -i 29 -n "$data" -d 0 -c 0
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- property_get -i 30 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- property_get -i 31 -n "$datos_papel" -d 0 -c 0
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- context_names -i 32 -d 0
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- context_get -i 33 -d 0 -c 0
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- run -i 34
+[110] [Step Debug] ->
+
+[110] Log closed at 2024-10-21 20:10:53.750840
+
+[92] Log opened at 2024-10-21 20:11:31.789867
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 416
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2254
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error"
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error"
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error"
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- run -i 16
+[92] [Step Debug] ->
+
+[92] [Step Debug] ->
+
+[92] [Step Debug] ->
+
+[92] [Step Debug] ->
+
+[92] [Step Debug] ->
+
+[92] [Step Debug] ->
+
+[92] Log closed at 2024-10-21 20:11:42.390638
+
+[87] Log opened at 2024-10-21 20:12:02.257166
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2254
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error"
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error"
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error"
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- run -i 16
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- stack_get -i 17
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- property_get -i 18 -n "$datos_entrada" -d 0 -c 0
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- property_get -i 20 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- property_get -i 21 -n "$datos_papel" -d 0 -c 0
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- context_names -i 22 -d 0
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- context_get -i 23 -d 0 -c 0
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- property_get -i 24 -n "$return_data[\"errors\"]" -d 0 -c 0
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- property_get -i 25 -n "$return_data" -d 0 -c 0
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- property_get -i 26 -n "$this->calcular_presupuesto" -d 0 -c 0
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- property_get -i 27 -n "$this->calcular_presupuesto" -d 0 -c 0
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- property_get -i 28 -n "$return_data" -d 0 -c 0
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_remove -i 29 -d 870051
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_remove -i 30 -d 870052
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_remove -i 31 -d 870053
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_remove -i 32 -d 870054
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 33 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 365
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 34 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 634
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 35 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 831
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 36 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2259
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_remove -i 37 -d 870060
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_remove -i 38 -d 870061
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_remove -i 39 -d 870062
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_remove -i 40 -d 870063
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 41 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 366
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 42 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 633
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 43 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 827
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 44 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2258
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_remove -i 45 -d 870064
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- property_get -i 46 -n "$return_data" -d 0 -c 0
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- property_get -i 47 -n "$return_data" -d 0 -c 0
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_remove -i 48 -d 870065
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_remove -i 49 -d 870066
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_remove -i 50 -d 870067
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 51 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 52 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 834
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 53 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2265
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_remove -i 54 -d 870068
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_remove -i 55 -d 870069
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_remove -i 56 -d 870070
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 57 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 638
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 58 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 832
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 59 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2260
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_remove -i 60 -d 870071
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_remove -i 61 -d 870072
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_remove -i 62 -d 870073
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 63 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 64 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 65 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- run -i 66
+[87] [Step Debug] ->
+
+[87] Log closed at 2024-10-21 20:15:03.435860
+
+[107] Log opened at 2024-10-21 20:15:10.239433
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- run -i 15
+[107] [Step Debug] ->
+
+[107] Log closed at 2024-10-21 20:15:11.107527
+
+[99] Log opened at 2024-10-21 20:15:11.259459
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- run -i 15
+[99] [Step Debug] ->
+
+[99] Log closed at 2024-10-21 20:15:11.605560
+
+[99] Log opened at 2024-10-21 20:15:11.784066
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[99] [Step Debug] ->
+
+[107] Log opened at 2024-10-21 20:15:11.804781
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] ->
+
+[99] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[99] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[107] [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] ->
+
+[107] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[99] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[107] [Step Debug] ->
+
+[99] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829
+[99] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829
+[107] [Step Debug] ->
+
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261
+[99] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261
+[99] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[99] [Step Debug] ->
+
+[107] [Step Debug] ->
+
+[99] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[99] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[99] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
+[107] [Step Debug] ->
+
+[99] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[107] [Step Debug] ->
+
+[99] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
+[99] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[107] [Step Debug] ->
+
+[99] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
+[99] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- feature_set -i 12 -n notify_ok -v 1
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- feature_set -i 13 -n resolved_breakpoints -v 1
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- feature_set -i 14 -n extended_properties -v 1
+[107] [Step Debug] ->
+
+[99] [Step Debug] <- run -i 15
+[107] [Step Debug] <- run -i 15
+[108] Log opened at 2024-10-21 20:15:11.987873
+[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108'
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] ->
+
+[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[108] [Step Debug] ->
+
+[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[108] [Step Debug] ->
+
+[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[108] [Step Debug] ->
+
+[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[108] [Step Debug] ->
+
+[108] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[108] [Step Debug] ->
+
+[108] [Step Debug] <- run -i 6
+[107] [Step Debug] ->
+
+[107] Log closed at 2024-10-21 20:15:12.614540
+
+[99] [Step Debug] ->
+
+[99] [Step Debug] ->
+
+[99] Log closed at 2024-10-21 20:15:13.059087
+
+[108] [Step Debug] ->
+
+[108] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[108] [Step Debug] ->
+
+[108] Log closed at 2024-10-21 20:15:13.363029
+
+[102] Log opened at 2024-10-21 20:15:25.886681
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- run -i 15
+[102] [Step Debug] ->
+
+[102] Log closed at 2024-10-21 20:15:26.670626
+
+[94] Log opened at 2024-10-21 20:15:33.280820
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] ->
+
+[94] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- run -i 15
+[94] [Step Debug] ->
+
+[94] Log closed at 2024-10-21 20:15:34.179825
+
+[76] Log opened at 2024-10-21 20:15:34.273051
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- run -i 15
+[76] [Step Debug] ->
+
+[76] Log closed at 2024-10-21 20:15:34.495291
+
+[76] Log opened at 2024-10-21 20:15:34.646347
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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
+[94] Log opened at 2024-10-21 20:15:34.654047
+[76] [Step Debug] ->
+
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[76] [Step Debug] ->
+
+[94] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] ->
+
+[76] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[76] [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] ->
+
+[94] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[76] [Step Debug] ->
+
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[76] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[76] [Step Debug] ->
+
+[94] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829
+[94] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829
+[94] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261
+[76] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261
+[76] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[94] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[94] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[76] [Step Debug] ->
+
+[94] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
+[94] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[76] [Step Debug] ->
+
+[94] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
+[76] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[76] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[76] [Step Debug] ->
+
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829
+[94] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829
+[94] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261
+[94] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[94] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261
+[94] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[94] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[76] [Step Debug] ->
+
+[110] Log opened at 2024-10-21 20:15:34.747209
+[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110'
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[110] [Step Debug] ->
+
+[76] [Step Debug] <- run -i 20
+[94] [Step Debug] <- run -i 20
+[110] [Step Debug] <- run -i 6
+[94] [Step Debug] ->
+
+[94] Log closed at 2024-10-21 20:15:35.370857
+
+[76] [Step Debug] ->
+
+[76] [Step Debug] ->
+
+[76] Log closed at 2024-10-21 20:15:35.861671
+
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[110] [Step Debug] ->
+
+[110] Log closed at 2024-10-21 20:15:36.074830
+
+[92] Log opened at 2024-10-21 20:16:14.601308
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1469
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error"
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error"
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error"
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- run -i 16
+[92] [Step Debug] ->
+
+[92] [Step Debug] ->
+
+[92] [Step Debug] ->
+
+[92] [Step Debug] ->
+
+[92] [Step Debug] ->
+
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- stack_get -i 17
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- property_get -i 18 -n "$datos_entrada" -d 0 -c 0
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- property_get -i 20 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- property_get -i 21 -n "$datos_papel" -d 0 -c 0
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- context_names -i 22 -d 0
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- context_get -i 23 -d 0 -c 0
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- property_get -i 24 -n "$linea" -d 0 -c 0
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- run -i 25
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- stack_get -i 26
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- stack_get -i 27
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- property_get -i 28 -n "$datos_entrada" -d 0 -c 0
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- property_get -i 29 -n "$data" -d 0 -c 0
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- property_get -i 30 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- property_get -i 31 -n "$datos_papel" -d 0 -c 0
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- context_names -i 32 -d 0
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- context_get -i 33 -d 0 -c 0
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- property_get -i 34 -n "$linea" -d 0 -c 0
+[92] [Step Debug] ->
+
+[92] [Step Debug] <- run -i 35
+[92] [Step Debug] ->
+
+[92] Log closed at 2024-10-21 20:16:32.977654
+
+[87] Log opened at 2024-10-21 20:16:53.490451
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1528
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error"
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error"
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error"
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- run -i 16
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] Log closed at 2024-10-21 20:16:58.153032
+
+[103] Log opened at 2024-10-21 20:17:18.358897
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1580
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error"
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error"
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error"
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- run -i 16
+[103] [Step Debug] ->
+
+[103] [Step Debug] ->
+
+[103] [Step Debug] ->
+
+[103] [Step Debug] ->
+
+[103] [Step Debug] ->
+
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 17
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 18 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 20 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 21 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 22 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 23 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 24 -n "$cubierta" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 25
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 26
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 27 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 28 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 29 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 30 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 31 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 32 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 33
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 34
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 35 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 36 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 37 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 38 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 39 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 40 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 41
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 42
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 43 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 44 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 45 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 46 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 47 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 48 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 49
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 50
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 51
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 52 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 53 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 54 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 55 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 56 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 57 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 58
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 59
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 60 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 61 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 62 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 63 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 64 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 65 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 66
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 67
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 68 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 69 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 70 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 71 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 72 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 73 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 74
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 75
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 76 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 77 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 78 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 79 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 80 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 81 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 82
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 83
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 84 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 85 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 86 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 87 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 88 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 89 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 90
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 91
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 92 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 93 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 94 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 95 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 96 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 97 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 98
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 99
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 100
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 101 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 102 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 103 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 104 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 105 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 106 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 107
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 108
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 109 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 110 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 111 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 112 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 113 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 114 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 115
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 116
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 117
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 118 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 119 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 120 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 121 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 122 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 123 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 124
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 125
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 126
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 127 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 128 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 129 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 130 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 131 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 132 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 133
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 134
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 135 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 136 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 137 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 138 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 139 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 140 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 141
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 142
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 143 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 144 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 145 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 146 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 147 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 148 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 149
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 150
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 151 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 152 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 153 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 154 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 155 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 156 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 157
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 158
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 159 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 160 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 161 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 162 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 163 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 164 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 165
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 166
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 167 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 168 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 169 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 170 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 171 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 172 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 173
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 174
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 175 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 176 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 177 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 178 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 179 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 180 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 181
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 182
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 183 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 184 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 185 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 186 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 187 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 188 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 189
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 190
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 191 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 192 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 193 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 194 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 195 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 196 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 197
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 198
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 199 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 200 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 201 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 202 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 203 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 204 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 205
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 206
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 207 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 208 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 209 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 210 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 211 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 212 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 213
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 214
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 215 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 216 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 217 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 218 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 219 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 220 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 221
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 222
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 223 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 224 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 225 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 226 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 227 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 228 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 229
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 230
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 231 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 232 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 233 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 234 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 235 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 236 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 237
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 238
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 239
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 240 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 241 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 242 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 243 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 244 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 245 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 246
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 247
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 248
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 249 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 250 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 251 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 252 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 253 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 254 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 255
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 256
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 257 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 258 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 259 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 260 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 261 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 262 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 263
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 264
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 265
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 266 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 267 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 268 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 269 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 270 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 271 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 272
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 273
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 274 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 275 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 276 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 277 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 278 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 279 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 280
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 281
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 282 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 283 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 284 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 285 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 286 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 287 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 288
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 289
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 290
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 291 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 292 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 293 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 294 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 295 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 296 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 297
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 298
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 299 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 300 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 301 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 302 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 303 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 304 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 305
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 306
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 307 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 308 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 309 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 310 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 311 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 312 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 313
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 314
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 315 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 316 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 317 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 318 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 319 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 320 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 321
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 322
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 323 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 324 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 325 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 326 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 327 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 328 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 329
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 330
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 331 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 332 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 333 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 334 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 335 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 336 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 337
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 338
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 339 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 340 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 341 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 342 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 343 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 344 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 345
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 346
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 347 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 348 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 349 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 350 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 351 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 352 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 353
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 354
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 355 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 356 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 357 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 358 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 359 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 360 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 361
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 362
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 363 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 364 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 365 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 366 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 367
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 368 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 369
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 370 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 371 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 372 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 373 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 374 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 375 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 376 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 377
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 378
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 379
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 380 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 381 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 382 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 383 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 384 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 385 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 386
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 387
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 388 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 389 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 390 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 391 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 392
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 393
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 394
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 395 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 396 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 397 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 398 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 399 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 400 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 401
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 402
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 403
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 404 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 405 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 406 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 407 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 408 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 409 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 410
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 411
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 412 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 413 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 414 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 415 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 416 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 417 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 418
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 419
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 420 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 421 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 422 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 423 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 424 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 425 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 426 -n "$coste_sobrecubierta" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- step_over -i 427
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- stack_get -i 428
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 429 -n "$datos_entrada" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 430 -n "$data" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 431 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- property_get -i 432 -n "$datos_papel" -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_names -i 433 -d 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- context_get -i 434 -d 0 -c 0
+[103] [Step Debug] ->
+
+[103] [Step Debug] <- run -i 435
+[103] [Step Debug] ->
+
+[103] Log closed at 2024-10-21 20:18:42.806554
+
+[107] Log opened at 2024-10-21 20:19:16.762529
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1580
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error"
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error"
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error"
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- run -i 16
+[107] [Step Debug] ->
+
+[107] [Step Debug] ->
+
+[107] [Step Debug] ->
+
+[107] [Step Debug] ->
+
+[107] [Step Debug] ->
+
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- stack_get -i 17
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- property_get -i 18 -n "$datos_entrada" -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- property_get -i 20 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- property_get -i 21 -n "$datos_papel" -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- context_names -i 22 -d 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- context_get -i 23 -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_remove -i 24 -d 1070022
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1662
+[107] [Step Debug] ->
+
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- run -i 26
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- stack_get -i 27
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- property_get -i 28 -n "$datos_entrada" -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- property_get -i 29 -n "$data" -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- property_get -i 30 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- property_get -i 31 -n "$datos_papel" -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- context_names -i 32 -d 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- context_get -i 33 -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- property_get -i 34 -n "$linea_sobrecubierta" -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- step_over -i 35
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- stack_get -i 36
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- property_get -i 37 -n "$datos_entrada" -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- property_get -i 38 -n "$data" -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- property_get -i 39 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- property_get -i 40 -n "$datos_papel" -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- context_names -i 41 -d 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- context_get -i 42 -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- property_get -i 43 -n "$linea_sobrecubierta" -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- eval -i 44 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDMyODRlYzZkYjQ3MDVhY2JiM2YyNzBmZWQyYzkxMzVjYTIzNzVlY2EwYmQyN2NiN2YzZTY5MzAxMjNmNzE1ZSddPVByZXN1cHVlc3RvQ2xpZW50ZVNlcnZpY2U6Om9idGVuZXJTb2JyZWN1YmllcnRh
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- property_get -i 45 -n "$input_data" -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- run -i 46
+[107] [Step Debug] ->
+
+[107] Log closed at 2024-10-21 20:20:53.178111
+
+[107] Log opened at 2024-10-21 20:20:57.199498
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[107] [Step Debug] ->
+
+[99] Log opened at 2024-10-21 20:20:57.212222
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[99] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[107] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[99] [Step Debug] ->
+
+[107] [Step Debug] ->
+
+[99] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- feature_set -i 6 -n extended_properties -v 1
+[99] [Step Debug] ->
+
+[108] Log opened at 2024-10-21 20:20:57.225986
+[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108'
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[107] [Step Debug] ->
+
+[99] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1662
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[99] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1662
+[107] [Step Debug] ->
+
+[99] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[107] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261
+[107] [Step Debug] ->
+
+[99] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[107] [Step Debug] ->
+
+[99] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error"
+[107] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error"
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error"
+[99] [Step Debug] ->
+
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error"
+[99] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error"
+[107] [Step Debug] ->
+
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error"
+[99] [Step Debug] ->
+
+[108] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] ->
+
+[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[108] [Step Debug] ->
+
+[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[108] [Step Debug] ->
+
+[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[108] [Step Debug] ->
+
+[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[108] [Step Debug] ->
+
+[108] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[108] [Step Debug] ->
+
+[102] Log opened at 2024-10-21 20:20:57.241907
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[102] [Step Debug] ->
+
+[108] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[102] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[102] [Step Debug] ->
+
+[108] [Step Debug] ->
+
+[108] [Step Debug] <- run -i 7
+[107] [Step Debug] <- run -i 16
+[99] [Step Debug] <- run -i 16
+[102] [Step Debug] <- run -i 7
+[99] [Step Debug] ->
+
+[99] [Step Debug] ->
+
+[99] [Step Debug] ->
+
+[99] [Step Debug] ->
+
+[99] [Step Debug] ->
+
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- stack_get -i 17
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- property_get -i 18 -n "$datos_entrada" -d 0 -c 0
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- property_get -i 20 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- property_get -i 21 -n "$datos_papel" -d 0 -c 0
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- context_names -i 22 -d 0
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- context_get -i 23 -d 0 -c 0
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- run -i 24
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- stack_get -i 25
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- property_get -i 26 -n "$datos_entrada" -d 0 -c 0
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- property_get -i 27 -n "$data" -d 0 -c 0
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- property_get -i 28 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- property_get -i 29 -n "$datos_papel" -d 0 -c 0
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- context_names -i 30 -d 0
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- context_get -i 31 -d 0 -c 0
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- run -i 32
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- stack_get -i 33
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- property_get -i 34 -n "$datos_entrada" -d 0 -c 0
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- property_get -i 35 -n "$data" -d 0 -c 0
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- property_get -i 36 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- property_get -i 37 -n "$datos_papel" -d 0 -c 0
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- context_names -i 38 -d 0
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- context_get -i 39 -d 0 -c 0
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- run -i 40
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- stack_get -i 41
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- property_get -i 42 -n "$datos_entrada" -d 0 -c 0
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- property_get -i 43 -n "$data" -d 0 -c 0
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- property_get -i 44 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- property_get -i 45 -n "$datos_papel" -d 0 -c 0
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- context_names -i 46 -d 0
+[99] [Step Debug] ->
+
+[99] [Step Debug] <- context_get -i 47 -d 0 -c 0
+[99] [Step Debug] ->
+
+[94] Log opened at 2024-10-21 20:21:42.860007
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[94] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] ->
+
+[94] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1662
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error"
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error"
+[94] [Step Debug] ->
+
+[94] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error"
+[94] [Step Debug] ->
+
+[76] Log opened at 2024-10-21 20:21:48.865645
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[76] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1662
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error"
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error"
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error"
+[76] [Step Debug] ->
+
+[99] [Step Debug] <- run -i 48
+[99] [Step Debug] ->
+
+[99] Log closed at 2024-10-21 20:21:57.215592
+
+[107] [Step Debug] ->
+
+[107] [Step Debug] ->
+
+[107] [Step Debug] ->
+
+[107] [Step Debug] ->
+
+[107] [Step Debug] ->
+
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- stack_get -i 17
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- property_get -i 18 -n "$datos_entrada" -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- property_get -i 20 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- property_get -i 21 -n "$datos_papel" -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- context_names -i 22 -d 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- context_get -i 23 -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- run -i 24
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- stack_get -i 25
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- property_get -i 26 -n "$datos_entrada" -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- property_get -i 27 -n "$data" -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- property_get -i 28 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- property_get -i 29 -n "$datos_papel" -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- context_names -i 30 -d 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- context_get -i 31 -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- run -i 32
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- stack_get -i 33
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- property_get -i 34 -n "$datos_entrada" -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- property_get -i 35 -n "$data" -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- property_get -i 36 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- property_get -i 37 -n "$datos_papel" -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- context_names -i 38 -d 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- context_get -i 39 -d 0 -c 0
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- stop -i 40
+[107] [Step Debug] ->
+
+[94] [Step Debug] <- stop -i 16
+[76] [Step Debug] <- stop -i 16
+[76] [Step Debug] ->
+
+[94] [Step Debug] ->
+
+[107] [Step Debug] ->
+
+[107] Log closed at 2024-10-21 20:22:20.105444
+
+[92] Log opened at 2024-10-21 20:22:20.141110
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[102] [Step Debug] ->
+
+[102] Log closed at 2024-10-21 20:22:35.974337
+
+[108] [Step Debug] ->
+
+[108] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[108] [Step Debug] ->
+
+[108] Log closed at 2024-10-21 20:22:51.912644
+
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 20:22:52.597208
+
+[92] Log opened at 2024-10-21 20:22:52.774323
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 20:22:53.452820
+
+[92] Log opened at 2024-10-21 20:22:53.867423
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] Log opened at 2024-10-21 20:22:53.877171
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[111] Log opened at 2024-10-21 20:22:54.893856
+[111] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.111'
+[111] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[111] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 20:22:55.112565
+
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-21 20:22:55.807109
+
+[111] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[111] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[111] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[111] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[111] Log closed at 2024-10-21 20:22:56.241059
+
+[107] Log opened at 2024-10-21 20:23:02.850103
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 20:23:04.132142
+
+[107] Log opened at 2024-10-21 20:23:04.233959
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 20:23:04.895436
+
+[87] Log opened at 2024-10-21 20:23:05.194174
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] Log opened at 2024-10-21 20:23:05.287290
+[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108'
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] Log opened at 2024-10-21 20:23:05.335011
+[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103'
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] Log closed at 2024-10-21 20:23:06.586593
+
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 20:23:07.233479
+
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[103] Log closed at 2024-10-21 20:23:07.628487
+
+[110] Log opened at 2024-10-21 20:23:58.826101
+[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110'
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] Log closed at 2024-10-21 20:23:59.911796
+
+[110] Log opened at 2024-10-21 20:23:59.929853
+[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110'
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] Log closed at 2024-10-21 20:24:00.919606
+
+[110] Log opened at 2024-10-21 20:24:01.026885
+[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110'
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] Log closed at 2024-10-21 20:24:01.680509
+
+[87] Log opened at 2024-10-21 20:24:01.898124
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 20:24:02.804742
+
+[87] Log opened at 2024-10-21 20:24:03.538876
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 20:24:05.027092
+
+[87] Log opened at 2024-10-21 20:24:05.039254
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 20:24:06.181221
+
+[87] Log opened at 2024-10-21 20:24:06.233442
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 20:24:06.874419
+
+[87] Log opened at 2024-10-21 20:24:06.968790
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[112] Log opened at 2024-10-21 20:24:06.978618
+[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112'
+[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[112] Log closed at 2024-10-21 20:24:07.970970
+
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 20:24:08.596519
+
+[114] Log opened at 2024-10-21 20:24:32.006325
+[114] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.114'
+[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[114] Log closed at 2024-10-21 20:24:33.256663
+
+[114] Log opened at 2024-10-21 20:24:33.324507
+[114] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.114'
+[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[114] Log closed at 2024-10-21 20:24:33.986128
+
+[108] Log opened at 2024-10-21 20:24:34.123000
+[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108'
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] Log opened at 2024-10-21 20:24:34.124793
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] Log opened at 2024-10-21 20:24:34.239700
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[107] Log closed at 2024-10-21 20:24:35.101759
+
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] Log closed at 2024-10-21 20:24:35.699552
+
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 20:24:36.164260
+
+[113] Log opened at 2024-10-21 20:24:46.876889
+[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113'
+[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[113] Log closed at 2024-10-21 20:24:48.606432
+
+[113] Log opened at 2024-10-21 20:24:48.676631
+[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113'
+[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[113] Log closed at 2024-10-21 20:24:49.345532
+
+[108] Log opened at 2024-10-21 20:24:49.517694
+[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108'
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[115] Log opened at 2024-10-21 20:24:49.526047
+[115] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.115'
+[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] Log opened at 2024-10-21 20:24:49.527314
+[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110'
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[115] Log closed at 2024-10-21 20:24:50.569754
+
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] Log closed at 2024-10-21 20:24:50.905777
+
+[115] Log opened at 2024-10-21 20:24:51.095739
+[115] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.115'
+[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] Log closed at 2024-10-21 20:24:51.557543
+
+[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[115] Log closed at 2024-10-21 20:24:52.707988
+
+[108] Log opened at 2024-10-21 20:24:52.735765
+[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108'
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[115] Log opened at 2024-10-21 20:24:52.799768
+[115] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.115'
+[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] Log opened at 2024-10-21 20:24:52.813692
+[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110'
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] Log opened at 2024-10-21 20:24:52.839147
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] Log closed at 2024-10-21 20:24:53.857193
+
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] Log closed at 2024-10-21 20:25:10.847605
+
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 20:25:26.992383
+
+[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[115] Log closed at 2024-10-21 20:25:44.054223
+
+[114] Log opened at 2024-10-21 20:26:12.757665
+[114] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.114'
+[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[114] Log closed at 2024-10-21 20:26:14.518295
+
+[114] Log opened at 2024-10-21 20:26:14.648073
+[114] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.114'
+[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[114] Log closed at 2024-10-21 20:26:15.291776
+
+[87] Log opened at 2024-10-21 20:26:15.556728
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[112] Log opened at 2024-10-21 20:26:15.720373
+[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112'
+[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[116] Log opened at 2024-10-21 20:26:15.724439
+[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116'
+[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[112] Log closed at 2024-10-21 20:26:16.717964
+
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 20:26:17.320828
+
+[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[116] Log closed at 2024-10-21 20:26:18.193958
+
+[112] Log opened at 2024-10-21 20:26:18.251548
+[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112'
+[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[112] Log closed at 2024-10-21 20:26:20.161315
+
+[112] Log opened at 2024-10-21 20:26:20.191744
+[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112'
+[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] Log opened at 2024-10-21 20:26:20.271786
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[116] Log opened at 2024-10-21 20:26:20.299680
+[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116'
+[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[112] Log closed at 2024-10-21 20:26:21.331044
+
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-21 20:26:35.440580
+
+[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[116] Log closed at 2024-10-21 20:26:49.992359
+
+[113] Log opened at 2024-10-21 20:28:12.265501
+[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113'
+[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[113] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1575
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1662
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error"
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error"
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error"
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- run -i 17
+[113] [Step Debug] ->
+
+[113] [Step Debug] ->
+
+[113] [Step Debug] ->
+
+[113] [Step Debug] ->
+
+[113] [Step Debug] ->
+
+[113] [Step Debug] ->
+
+[113] [Step Debug] ->
+
+[113] Log closed at 2024-10-21 20:28:13.519853
+
+[113] Log opened at 2024-10-21 20:28:13.672744
+[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113'
+[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[113] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1575
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1662
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error"
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error"
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error"
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- run -i 17
+[113] [Step Debug] ->
+
+[113] Log closed at 2024-10-21 20:28:13.869711
+
+[107] Log opened at 2024-10-21 20:28:14.196440
+[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107'
+[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[107] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1575
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1662
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error"
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error"
+[107] [Step Debug] ->
+
+[107] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error"
+[107] [Step Debug] ->
+
+[108] Log opened at 2024-10-21 20:28:14.271527
+[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108'
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] Log opened at 2024-10-21 20:28:14.271527
+[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110'
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[108] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] ->
+
+[110] [Step Debug] ->
+
+[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[108] [Step Debug] ->
+
+[110] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[108] [Step Debug] ->
+
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[108] [Step Debug] ->
+
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[110] [Step Debug] ->
+
+[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[108] [Step Debug] ->
+
+[110] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[110] [Step Debug] ->
+
+[108] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[108] [Step Debug] ->
+
+[107] [Step Debug] <- run -i 17
+[110] [Step Debug] <- run -i 6
+[108] [Step Debug] <- run -i 6
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[110] [Step Debug] ->
+
+[110] Log closed at 2024-10-21 20:28:14.838086
+
+[108] [Step Debug] ->
+
+[108] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[108] [Step Debug] ->
+
+[108] Log closed at 2024-10-21 20:28:14.969590
+
+[110] Log opened at 2024-10-21 20:28:15.018253
+[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110'
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[110] [Step Debug] ->
+
+[107] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1575
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1662
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error"
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error"
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error"
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- run -i 17
+[107] [Step Debug] ->
+
+[107] Log closed at 2024-10-21 20:28:15.407964
+
+[110] [Step Debug] ->
+
+[110] [Step Debug] ->
+
+[110] [Step Debug] ->
+
+[110] [Step Debug] ->
+
+[110] [Step Debug] ->
+
+[110] [Step Debug] ->
+
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- stack_get -i 18
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- property_get -i 19 -n "$datos_entrada" -d 0 -c 0
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- property_get -i 20 -n "$data" -d 0 -c 0
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- property_get -i 21 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- property_get -i 22 -n "$datos_papel" -d 0 -c 0
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- context_names -i 23 -d 0
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- context_get -i 24 -d 0 -c 0
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- run -i 25
+[110] [Step Debug] ->
+
+[110] Log closed at 2024-10-21 20:28:22.409459
+
+[110] Log opened at 2024-10-21 20:28:22.450699
+[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110'
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1575
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1662
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error"
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error"
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error"
+[110] [Step Debug] ->
+
+[102] Log opened at 2024-10-21 20:28:22.538437
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[102] [Step Debug] ->
+
+[115] Log opened at 2024-10-21 20:28:22.557137
+[115] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.115'
+[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[115] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[115] [Step Debug] ->
+
+[115] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[115] [Step Debug] ->
+
+[115] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[115] [Step Debug] ->
+
+[115] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[115] [Step Debug] ->
+
+[115] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[115] [Step Debug] ->
+
+[115] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[115] [Step Debug] ->
+
+[102] [Step Debug] <- run -i 6
+[110] [Step Debug] <- run -i 17
+[115] [Step Debug] <- run -i 6
+[114] Log opened at 2024-10-21 20:28:22.610574
+[114] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.114'
+[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[114] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1575
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1662
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error"
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error"
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error"
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- breakpoint_remove -i 17 -d 1140006
+[114] [Step Debug] ->
+
+[115] [Step Debug] ->
+
+[115] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[115] [Step Debug] ->
+
+[115] Log closed at 2024-10-21 20:28:37.531541
+
+[110] [Step Debug] ->
+
+[110] [Step Debug] <- breakpoint_remove -i 18 -d 1100028
+[110] [Step Debug] ->
+
+[110] Log closed at 2024-10-21 20:28:37.729903
+
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576
+[102] [Step Debug] ->
+
+[102] Log closed at 2024-10-21 20:28:52.234130
+
+[114] [Step Debug] <- breakpoint_remove -i 18 -d 1140001
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- breakpoint_remove -i 19 -d 1140002
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- breakpoint_remove -i 20 -d 1140003
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- breakpoint_remove -i 21 -d 1140004
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- breakpoint_remove -i 22 -d 1140005
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- breakpoint_remove -i 23 -d 1140007
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- breakpoint_remove -i 24 -d 1140008
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1445
+[114] [Step Debug] ->
+
+[112] Log opened at 2024-10-21 20:30:53.010540
+[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112'
+[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[112] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[112] [Step Debug] ->
+
+[112] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[112] [Step Debug] ->
+
+[112] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[112] [Step Debug] ->
+
+[112] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[112] [Step Debug] ->
+
+[112] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[112] [Step Debug] ->
+
+[112] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[112] [Step Debug] ->
+
+[112] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1445
+[112] [Step Debug] ->
+
+[112] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[112] [Step Debug] ->
+
+[112] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[112] [Step Debug] ->
+
+[112] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[112] [Step Debug] ->
+
+[114] [Step Debug] <- run -i 26
+[112] [Step Debug] <- run -i 10
+[112] [Step Debug] ->
+
+[114] [Step Debug] ->
+
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- stack_get -i 27
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 28 -n "$datos_entrada" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 29 -n "$data" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 30 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 31 -n "$datos_papel" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_names -i 32 -d 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_get -i 33 -d 0 -c 0
+[114] [Step Debug] ->
+
+[112] [Step Debug] ->
+
+[112] Log closed at 2024-10-21 20:30:54.384291
+
+[112] Log opened at 2024-10-21 20:30:54.538370
+[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112'
+[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[112] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[112] [Step Debug] ->
+
+[112] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[112] [Step Debug] ->
+
+[112] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[112] [Step Debug] ->
+
+[112] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[112] [Step Debug] ->
+
+[112] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[112] [Step Debug] ->
+
+[112] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[112] [Step Debug] ->
+
+[112] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1445
+[112] [Step Debug] ->
+
+[112] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[112] [Step Debug] ->
+
+[112] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[112] [Step Debug] ->
+
+[112] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[112] [Step Debug] ->
+
+[112] [Step Debug] <- run -i 10
+[112] [Step Debug] ->
+
+[112] Log closed at 2024-10-21 20:30:54.663784
+
+[87] Log opened at 2024-10-21 20:30:54.991296
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1445
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[87] [Step Debug] ->
+
+[113] Log opened at 2024-10-21 20:30:55.024419
+[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113'
+[116] Log opened at 2024-10-21 20:30:55.023658
+[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116'
+[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[113] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[113] [Step Debug] ->
+
+[116] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[116] [Step Debug] ->
+
+[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[113] [Step Debug] ->
+
+[116] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[116] [Step Debug] ->
+
+[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[113] [Step Debug] ->
+
+[116] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[116] [Step Debug] ->
+
+[116] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[113] [Step Debug] ->
+
+[116] [Step Debug] ->
+
+[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[113] [Step Debug] ->
+
+[116] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[116] [Step Debug] ->
+
+[113] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[116] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[116] [Step Debug] ->
+
+[113] [Step Debug] ->
+
+[87] [Step Debug] <- run -i 10
+[113] [Step Debug] <- run -i 6
+[116] [Step Debug] <- run -i 6
+[116] [Step Debug] ->
+
+[116] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1445
+[116] [Step Debug] ->
+
+[116] Log closed at 2024-10-21 20:30:55.604097
+
+[87] [Step Debug] ->
+
+[87] Log closed at 2024-10-21 20:30:55.999772
+
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1445
+[113] [Step Debug] ->
+
+[113] Log closed at 2024-10-21 20:30:56.132327
+
+[116] Log opened at 2024-10-21 20:30:56.176097
+[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116'
+[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[116] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[116] [Step Debug] ->
+
+[116] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[116] [Step Debug] ->
+
+[116] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[116] [Step Debug] ->
+
+[116] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[116] [Step Debug] ->
+
+[116] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[116] [Step Debug] ->
+
+[116] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[116] [Step Debug] ->
+
+[116] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1445
+[116] [Step Debug] ->
+
+[116] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[116] [Step Debug] ->
+
+[116] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[116] [Step Debug] ->
+
+[116] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[116] [Step Debug] ->
+
+[116] [Step Debug] <- run -i 10
+[116] [Step Debug] ->
+
+[116] [Step Debug] ->
+
+[116] Log closed at 2024-10-21 20:30:57.218555
+
+[116] Log opened at 2024-10-21 20:30:57.252150
+[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116'
+[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[116] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[116] [Step Debug] ->
+
+[116] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[116] [Step Debug] ->
+
+[116] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[116] [Step Debug] ->
+
+[116] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[116] [Step Debug] ->
+
+[116] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[116] [Step Debug] ->
+
+[116] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[116] [Step Debug] ->
+
+[116] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1445
+[116] [Step Debug] ->
+
+[116] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[116] [Step Debug] ->
+
+[116] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[116] [Step Debug] ->
+
+[116] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[116] [Step Debug] ->
+
+[116] [Step Debug] <- run -i 10
+[87] Log opened at 2024-10-21 20:30:57.332553
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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] <- feature_set -i 5 -n extended_properties -v 1
+[87] [Step Debug] ->
+
+[113] Log opened at 2024-10-21 20:30:57.360120
+[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113'
+[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[113] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1445
+[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1445
+[87] [Step Debug] ->
+
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[87] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[87] [Step Debug] ->
+
+[113] [Step Debug] ->
+
+[108] Log opened at 2024-10-21 20:30:57.391198
+[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108'
+[87] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[87] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[113] [Step Debug] ->
+
+[108] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[108] [Step Debug] ->
+
+[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[108] [Step Debug] ->
+
+[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[108] [Step Debug] ->
+
+[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[108] [Step Debug] ->
+
+[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[108] [Step Debug] ->
+
+[108] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[108] [Step Debug] ->
+
+[113] [Step Debug] <- run -i 10
+[87] [Step Debug] <- run -i 10
+[108] [Step Debug] <- run -i 6
+[116] [Step Debug] ->
+
+[116] Log closed at 2024-10-21 20:30:57.955430
+
+[114] [Step Debug] <- step_over -i 34
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- stack_get -i 35
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 36 -n "$datos_entrada" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 37 -n "$data" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 38 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 39 -n "$datos_papel" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_names -i 40 -d 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_get -i 41 -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- step_over -i 42
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- stack_get -i 43
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 44 -n "$datos_entrada" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 45 -n "$data" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 46 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 47 -n "$datos_papel" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_names -i 48 -d 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_get -i 49 -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- step_over -i 50
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- stack_get -i 51
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- stack_get -i 52
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 53 -n "$datos_entrada" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 54 -n "$data" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 55 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 56 -n "$datos_papel" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_names -i 57 -d 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_get -i 58 -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- step_over -i 59
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- stack_get -i 60
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 61 -n "$datos_entrada" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 62 -n "$data" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 63 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 64 -n "$datos_papel" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_names -i 65 -d 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_get -i 66 -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- step_over -i 67
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- stack_get -i 68
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- stack_get -i 69
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 70 -n "$datos_entrada" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 71 -n "$data" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 72 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 73 -n "$datos_papel" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_names -i 74 -d 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_get -i 75 -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- step_over -i 76
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- stack_get -i 77
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 78 -n "$datos_entrada" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 79 -n "$data" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 80 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 81 -n "$datos_papel" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_names -i 82 -d 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_get -i 83 -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- step_over -i 84
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- stack_get -i 85
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 86 -n "$datos_entrada" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 87 -n "$data" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 88 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 89 -n "$datos_papel" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_names -i 90 -d 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_get -i 91 -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- step_over -i 92
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- stack_get -i 93
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- stack_get -i 94
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 95 -n "$datos_entrada" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 96 -n "$data" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 97 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 98 -n "$datos_papel" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_names -i 99 -d 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_get -i 100 -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- step_over -i 101
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- stack_get -i 102
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 103 -n "$datos_entrada" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 104 -n "$data" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 105 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 106 -n "$datos_papel" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_names -i 107 -d 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_get -i 108 -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- step_over -i 109
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- stack_get -i 110
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 111 -n "$datos_entrada" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 112 -n "$data" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 113 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 114 -n "$datos_papel" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- step_over -i 115
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_names -i 116 -d 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- stack_get -i 117
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_get -i 118 -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 119 -n "$datos_entrada" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 120 -n "$data" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 121 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 122 -n "$datos_papel" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_names -i 123 -d 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_get -i 124 -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- step_over -i 125
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- stack_get -i 126
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- stack_get -i 127
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 128 -n "$datos_entrada" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 129 -n "$data" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 130 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 131 -n "$datos_papel" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- step_over -i 132
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- stack_get -i 133
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 134 -n "$datos_entrada" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 135 -n "$data" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 136 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 137 -n "$datos_papel" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- step_over -i 138
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- stack_get -i 139
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_names -i 140 -d 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_get -i 141 -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 142 -n "$datos_entrada" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 143 -n "$data" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 144 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 145 -n "$datos_papel" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_names -i 146 -d 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_get -i 147 -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- step_over -i 148
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- stack_get -i 149
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 150 -n "$datos_entrada" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 151 -n "$data" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 152 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 153 -n "$datos_papel" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_names -i 154 -d 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_get -i 155 -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- step_over -i 156
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- stack_get -i 157
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 158 -n "$datos_entrada" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 159 -n "$data" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 160 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 161 -n "$datos_papel" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_names -i 162 -d 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_get -i 163 -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- step_over -i 164
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- stack_get -i 165
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- stack_get -i 166
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 167 -n "$datos_entrada" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 168 -n "$data" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 169 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 170 -n "$datos_papel" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_names -i 171 -d 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_get -i 172 -d 0 -c 0
+[114] [Step Debug] ->
+
+[108] [Step Debug] ->
+
+[108] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1445
+[108] [Step Debug] ->
+
+[108] Log closed at 2024-10-21 20:31:14.367035
+
+[113] [Step Debug] ->
+
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 11
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 12 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 13 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 14 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 15 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 16 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 17 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 18
+[114] [Step Debug] <- property_get -i 173 -n "$datos_entrada" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 174 -n "$data" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 175 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 176 -n "$datos_papel" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_names -i 177 -d 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- context_get -i 178 -d 0 -c 0
+[114] [Step Debug] ->
+
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 19
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 20 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 21 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 22 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 23 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 24 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 25 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 26
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 27
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 28 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 29 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 30 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 31 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 32 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 33 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 34
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 35
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 36 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 37 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 38 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 39 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 40
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 41 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 42
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 43 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 44 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 45 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 46 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 47 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 48
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 49 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 50 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 51
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 52 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 53 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 54 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 55 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 56 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 57 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 58
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 59
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 60
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 61 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 62 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 63 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 64 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 65 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 66 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 67
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 68
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 69
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 70 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 71 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 72 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 73 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 74 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 75 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 76
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 77
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 78 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 79 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 80 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 81 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 82 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 83 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 84
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 85
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 86 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 87 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 88 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 89 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 90 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 91 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 92
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 93
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 94 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 95 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 96 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 97 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 98 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 99 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 100
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 101
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 102 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 103 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 104 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 105 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 106
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 107
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 108 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 109 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 110 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 111 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 112
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 113
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 114 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 115 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 116 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 117 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 118
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 119
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 120
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 121 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 122 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 123 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 124 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 125
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 126
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 127
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 128 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 129 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 130 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 131 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 132 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 133 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 134
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 135
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 136 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 137 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 138 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 139 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 140 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 141 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 142
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 143
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 144 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 145 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 146 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 147 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 148 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 149 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 150
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 151
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 152 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 153 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 154 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 155 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 156 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 157 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 158
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 159
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 160
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 161 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 162 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 163 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 164 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 165 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 166 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 167
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 168
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 169
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 170 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 171 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 172 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 173 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 174 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 175
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 176 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 177
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 178 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 179 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 180 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 181 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 182 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 183 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 184
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 185
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 186 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 187 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 188 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 189 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 190 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 191 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 192
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 193
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 194 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 195 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 196 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 197 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 198
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 199
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 200
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 201 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 202 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 203 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 204 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 205
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 206
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 207 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 208 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 209 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 210 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 211
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 212
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 213 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 214 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 215 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 216 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 217
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 218
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 219 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 220 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 221 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 222 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 223
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 224 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 225 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 226
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 227
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 228 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 229 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 230 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 231 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 232 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 233 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 234
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 235
+[113] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 179 -n "$datos_entrada" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 180 -n "$data" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 181 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 182 -n "$datos_papel" -d 0 -c 0
+[114] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 236 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 237 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 238 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 239 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 240 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 241 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 242
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 243
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 244 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 245 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 246 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 247 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 248 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 249 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 250
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 251
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 252 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 253 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 254 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 255 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 256
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 257 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 258 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 259
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 260
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 261 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 262 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 263 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 264 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 265
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 266
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 267
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 268 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 269 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 270 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 271 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 272 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 273 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 274
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 275
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 276
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 277 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 278 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 279 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 280 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 281
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 282
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 283
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 284 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 285 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 286 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 287 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 288 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 289 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 290
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 291
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 292 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 293 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 294 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 295 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 296 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 297 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 298
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 299
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 300 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 301 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 302 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 303 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 304 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 305 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 306
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 307
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 308 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 309 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 310 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 311 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 312 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 313 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 314
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 315
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 316
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 317 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 318 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 319 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 320 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 321 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 322 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 323
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 324
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 325 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 326 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 327 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 328 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 329 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 330 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 331
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 332
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 333
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 334 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 335 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 336 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 337 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 338 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 339 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 340
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 341
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 342 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 343 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 344 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 345 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 346 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 347 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 348
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 349
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 350 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 351 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 352 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 353 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 354
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 355 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 356
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 357 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 358 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 359 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 360 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 361 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 362 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 363 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 364
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 365
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 366 -n "$datos_entrada" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 367 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 368 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 369 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 370 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 371 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 372 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 373 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 374 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 375 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 376 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 377 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 378 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 379 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 380 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 381 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 382 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 383
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 384
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 385
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 386 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 387 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 388 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 389 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 390 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 391 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 392
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 393
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 394 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 395 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 396 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 397 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 398 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 399 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 400
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 401
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 402
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 403 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 404 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 405 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 406 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 407
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 408 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 409 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 410
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 411 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 412 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 413 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 414 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 415
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 416 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 417
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 418 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 419 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 420 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 421 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 422 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 423 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 424 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 425
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 426
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 427 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 428 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 429 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 430 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 431 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 432 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 433
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 434
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 435 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 436 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 437 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 438 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 439 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 440 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 441
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 442
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 443 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 444 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 445 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 446 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 447 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 448 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 449
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 450
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 451 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 452 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 453 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 454 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 455 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 456 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 457
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 458
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 459 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 460 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 461 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 462 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 463 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 464 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 465
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 466
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 467
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 468 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 469 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 470 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 471 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 472 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 473
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 474 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 475
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 476 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 477 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 478 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 479 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 480 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 481 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 482
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 483
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 484
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 485 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 486 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 487 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 488 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 489 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 490 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 491
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 492
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 493 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 494 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 495 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 496 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 497 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 498 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 499
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 500
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 501
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 502 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 503 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 504 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 505 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 506 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 507 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- run -i 508
+[114] [Step Debug] <- property_get -i 183 -n "$t" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 184 -n "$data" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 185 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 186 -n "$datos_papel" -d 0 -c 0
+[114] [Step Debug] ->
+
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 509
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 510 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 511 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 512 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 513 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 514 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 515 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- run -i 516
+[114] [Step Debug] <- property_get -i 187 -n "$t" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 188 -n "$data" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 189 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 190 -n "$datos_papel" -d 0 -c 0
+[114] [Step Debug] ->
+
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 517
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 518 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 519 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 520 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 521 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 522 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 523 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- run -i 524
+[114] [Step Debug] <- property_get -i 191 -n "$t" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 192 -n "$data" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 193 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 194 -n "$datos_papel" -d 0 -c 0
+[114] [Step Debug] ->
+
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 525
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 526 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 527 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 528 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 529 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 530 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 531 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 532
+[114] [Step Debug] <- property_get -i 195 -n "$t" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 196 -n "$data" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 197 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- property_get -i 198 -n "$datos_papel" -d 0 -c 0
+[114] [Step Debug] ->
+
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 533
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 534 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 535 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 536 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 537 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 538
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 539
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 540 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 541 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 542 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 543 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 544 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 545 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 546
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 547
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 548 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 549 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 550 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 551 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 552 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 553 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 554
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 555
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 556 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 557 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 558 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 559 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 560
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 561
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 562 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 563 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 564 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 565 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 566 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 567 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 568
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 569
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 570
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 571 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 572 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 573 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 574 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 575 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 576 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 577
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 578
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 579 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 580 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 581 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 582 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 583
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 584
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 585 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 586 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 587 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 588 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 589
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 590
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 591 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 592 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 593 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 594 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 595
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 596
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 597
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 598 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 599 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 600 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 601 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 602
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 603
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 604 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 605 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 606 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 607 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 608
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 609
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 610
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 611 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 612 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 613 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 614 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 615
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 616 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 617 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 618
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 619 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 620 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 621 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 622 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 623 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 624 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 625
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 626
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 627
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 628 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 629 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 630 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 631 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 632
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 633 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 634
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 635 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 636 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 637 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 638 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 639 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 640 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 641 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 642
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 643
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 644
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 645 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 646 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 647 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 648 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 649 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 650 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 651
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 652
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 653
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 654 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 655 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 656 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 657 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 658 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 659 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 660
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 661
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 662 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 663 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 664 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 665 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 666 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 667 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 668
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 669
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 670
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 671 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 672 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 673 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 674 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 675 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 676
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 677 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 678
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 679
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 680 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 681 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 682 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 683 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 684
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 685
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 686
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 687 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 688 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 689 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 690 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 691
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 692
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 693
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 694 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 695 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 696 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 697 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 698
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 699
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 700
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 701 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 702 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 703 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 704 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 705
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 706
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 707
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 708 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 709 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 710 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 711 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 712
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 713 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 714 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 715
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 716 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 717 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 718 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 719 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 720
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 721 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 722
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 723 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 724 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 725 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 726 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 727 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 728
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 729
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 730
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 731 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 732 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 733 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 734 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 735
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 736
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 737 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 738 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 739 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 740 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 741
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 742 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 743
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 744 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 745 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 746 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 747 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 748 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 749 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 750
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 751
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 752 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 753 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 754 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 755 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 756 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 757 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 758
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 759
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 760
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 761 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 762 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 763 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 764 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 765 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 766 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 767
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 768
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 769 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 770 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 771 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 772 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 773 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 774 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 775
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 776
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 777
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 778 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 779 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 780 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 781 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 782 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 783 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 784
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 785
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 786
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 787 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 788 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 789 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 790 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 791
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 792
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 793 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 794 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 795 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 796 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 797
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 798
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 799 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 800 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 801 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 802 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 803
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 804
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 805 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 806 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 807 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 808 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 809 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 810 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 811
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 812
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 813 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 814 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 815 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 816 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 817 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 818 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 819
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 820
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 821 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 822 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 823 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 824 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 825 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 826 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 827
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 828
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 829 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 830 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 831 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 832 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 833 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 834 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 835
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 836
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 837 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 838 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 839 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 840 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 841 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 842 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 843
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 844
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 845 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 846 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 847 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 848 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 849 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 850 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 851
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 852
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 853 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 854 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 855 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 856 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 857 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 858 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 859
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 860
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 861
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 862 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 863 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 864 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 865 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 866 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 867 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 868
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 869
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 870 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 871 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 872 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 873 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 874 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 875 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 876
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 877
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 878 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 879 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 880 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 881 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 882 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 883 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 884
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 885
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 886
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 887 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 888 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 889 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 890 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 891 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 892 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 893
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 894
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 895 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 896 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 897 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 898 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 899 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 900 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 901
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 902
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 903 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 904 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 905 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 906 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 907 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 908 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 909
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 910
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 911 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 912 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 913 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 914 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 915 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 916 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 917
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 918
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 919 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 920 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 921 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 922 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 923 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 924 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 925
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 926
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 927 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 928 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 929 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 930 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 931 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 932 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 933
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 934
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 935 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 936 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 937 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 938 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 939 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 940 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 941
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 942
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 943
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 944 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 945 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 946 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 947 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 948 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 949 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 950
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 951
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 952 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 953 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 954 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 955 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 956 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 957 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 958
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 959
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 960 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 961 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 962 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 963 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 964 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 965 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 966
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 967
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 968 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 969 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 970 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 971 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 972 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 973 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 974
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 975
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 976 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 977 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 978 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 979 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 980 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 981 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 982
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 983
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 984
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 985 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 986 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 987 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 988 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 989 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 990 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 991
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 992
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 993 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 994 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 995 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 996 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 997
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 998 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 999
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1000 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1001 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1002 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1003 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1004 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1005 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1006 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1007
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1008
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1009 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1010 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1011 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1012 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1013 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1014 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1015
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1016
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1017
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1018 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1019 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1020 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1021 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1022 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1023 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1024
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1025
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1026 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1027 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1028 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1029 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1030 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1031 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1032
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1033
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1034 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1035 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1036 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1037 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1038 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1039 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1040
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1041
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1042 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1043 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1044 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1045 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1046
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1047
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1048
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1049 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1050 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1051 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1052 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1053
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1054
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1055 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1056 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1057 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1058 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1059
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1060
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1061
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1062 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1063 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1064 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1065 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1066
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1067
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1068 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1069 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1070 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1071 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1072
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1073
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1074 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1075 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1076 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1077 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1078
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1079
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1080 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1081 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1082 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1083 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1084 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1085 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1086
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1087
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1088 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1089 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1090 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1091 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1092 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1093 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1094 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1095 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1096
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1097
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1098
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1099 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1100 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1101 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1102 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1103
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1104
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1105
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1106 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1107 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1108 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1109 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1110
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1111
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1112
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1113 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1114 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1115 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1116 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1117
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1118 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1119 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1120
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1121
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1122 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1123 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1124 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1125 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1126 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1127 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1128
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1129
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1130
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1131 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1132 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1133 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1134 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1135
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1136 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1137
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1138 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1139 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1140 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1141 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1142 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1143
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1144
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1145 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1146 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1147 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1148 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1149 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1150 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1151
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1152
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1153 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1154 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1155 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1156 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1157 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1158 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1159 -n "$linea_sobrecubierta" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1160
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1161
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1162 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1163 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1164 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1165 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1166 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1167 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1168
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1169
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1170 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1171 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1172 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1173 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1174 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1175 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1176
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1177
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1178 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1179 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1180 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1181 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1182 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1183 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1184
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1185
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1186
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1187 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1188 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1189 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1190 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1191 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1192 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1193
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1194
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1195 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1196 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1197 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1198 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1199 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1200 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1201
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1202
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1203 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1204 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1205 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1206 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1207 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1208 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1209
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1210
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1211 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1212 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1213 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1214 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1215
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1216
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1217
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1218 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1219 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1220 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1221 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1222
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1223
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1224 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1225 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1226 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1227 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1228 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1229 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1230
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1231
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1232
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1233 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1234 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1235 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1236 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1237 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1238 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1239
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1240
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1241 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1242 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1243 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1244 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1245
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1246
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1247 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1248 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1249 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1250 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1251
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1252 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1253
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1254 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1255 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1256 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1257 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1258 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1259
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1260
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1261 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1262 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1263 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1264 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1265 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1266 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1267
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1268
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1269 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1270 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1271 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1272 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1273 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1274 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1275
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1276
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1277
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1278 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1279 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1280 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1281 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1282
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1283 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1284
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1285 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1286 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1287 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1288 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1289 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1290
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1291
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1292 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1293 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1294 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1295 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1296
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1297
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1298
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1299 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1300 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1301 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1302 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1303 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1304 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1305
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1306
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1307 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1308 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1309 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1310 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1311 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1312 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1313
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1314
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1315 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1316 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1317 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1318 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1319 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1320 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1321
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1322
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1323 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1324 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1325 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1326 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1327
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1328
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1329
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1330 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1331 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1332 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1333 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1334
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1335
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1336 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1337 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1338 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1339 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1340 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1341 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1342
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1343
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1344
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1345 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1346 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1347 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1348 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1349
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1350
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1351 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1352 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1353 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1354 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1355
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1356
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1357 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1358 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1359 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1360 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1361
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1362
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1363 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1364 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1365 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1366 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1367
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1368
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1369
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1370 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1371 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1372 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1373 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1374
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1375
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1376 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1377 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1378 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1379 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1380 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1381 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1382
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1383
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1384 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1385 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1386 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1387 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1388 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1389 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1390
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1391
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1392 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1393 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1394 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1395 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1396 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1397 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1398
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1399
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1400 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1401 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1402 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1403 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1404 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1405 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1406 -n "$tipo_impresion_id" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1407 -n "$tipo_impresion_id" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1408
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1409
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1410 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1411 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1412 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1413 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1414 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1415 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1416
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1417
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1418
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1419 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1420 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1421 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1422 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1423 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1424 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1425
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1426
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1427 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1428 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1429 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1430 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1431 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1432 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1433
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1434
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1435 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1436 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1437 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1438 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1439 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1440 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1441
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1442
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1443
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1444 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1445 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1446 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1447 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1448 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1449 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1450
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1451
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1452 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1453 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1454 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1455 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1456 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1457 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1458
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1459
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1460 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1461 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1462 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1463 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1464 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1465 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1466
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1467
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1468 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1469 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1470 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1471 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1472 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1473 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1474
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1475
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1476 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1477 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1478 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1479 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1480 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1481 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1482
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1483
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1484 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1485 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1486 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1487 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1488 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1489 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1490
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1491
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1492 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1493 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1494 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1495 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1496 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1497 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1498
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1499
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1500
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1501 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1502 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1503 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1504 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1505 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1506 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1507
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1508
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1509 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1510 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1511 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1512 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1513 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1514 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1515
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1516
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1517
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1518 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1519 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1520 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1521 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1522 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1523 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1524
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1525
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1526 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1527 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1528 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1529 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1530 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1531 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1532
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1533
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1534 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1535 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1536 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1537 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1538 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1539 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1540
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1541
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1542
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1543 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1544 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1545 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1546 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1547 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1548 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1549
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1550
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1551
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1552 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1553 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1554 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1555 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1556 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1557 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1558
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1559
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1560
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1561 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1562 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1563 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1564 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1565 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1566 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1567
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1568
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1569
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1570 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1571 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1572 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1573 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1574 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1575 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1576
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1577
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1578 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1579 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1580 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1581 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1582 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1583 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1584
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1585
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1586
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1587 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1588 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1589 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1590 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1591
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1592
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1593 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1594 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1595 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1596 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1597 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1598 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1599
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1600
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1601 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1602 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1603 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1604 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1605 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1606 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1607
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1608
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1609 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1610 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1611 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1612 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1613
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1614 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1615
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1616
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1617 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1618 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1619 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1620 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1621 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1622
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1623 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1624
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1625 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1626 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1627 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1628 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1629 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1630
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1631 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1632
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1633 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1634 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1635 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1636 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1637 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1638 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1639 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1640
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1641
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1642 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1643 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1644 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1645 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1646 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1647 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1648
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1649
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1650
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1651 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1652 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1653 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1654 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1655 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1656 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1657
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1658
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1659 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1660 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1661 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1662 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1663 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1664 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1665
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1666
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1667 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1668 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1669 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1670 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1671 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1672 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1673
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1674
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1675 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1676 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1677 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1678 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1679
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1680
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1681
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1682 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1683 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1684 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1685 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1686 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1687 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1688
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1689
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1690 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1691 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1692 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1693 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1694 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1695 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1696
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1697
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1698
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1699 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1700 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1701 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1702 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1703 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1704 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1705
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1706
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1707
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1708 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1709 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1710 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1711 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1712 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1713 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1714
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1715
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1716 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1717 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1718 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1719 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1720 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1721 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1722
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1723
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1724 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1725 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1726 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1727 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1728 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1729 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1730
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1731
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1732 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1733 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1734 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1735 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1736 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1737 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1738
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1739
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1740 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1741 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1742 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1743 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1744 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1745 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1746
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1747
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1748 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1749 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1750 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1751 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1752 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1753 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1754
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1755
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1756 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1757 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1758 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1759 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1760 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1761 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1762
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1763
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1764 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1765 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1766 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1767 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1768 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1769 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1770
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1771
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1772
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1773 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1774 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1775 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1776 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1777 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1778 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- step_over -i 1779
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- stack_get -i 1780
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1781 -n "$t" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1782 -n "$data" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1783 -n "$data['papelInteriorDiferente']" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1784 -n "$datos_papel" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_names -i 1785 -d 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- context_get -i 1786 -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- property_get -i 1787 -n "$datos_presupuesto" -d 0 -c 0
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_remove -i 1788 -d 1130023
+[114] [Step Debug] <- breakpoint_remove -i 199 -d 1140012
+[114] [Step Debug] ->
+
+[113] [Step Debug] ->
+
+[113] [Step Debug] <- breakpoint_set -i 1789 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1448
+[114] [Step Debug] <- breakpoint_set -i 200 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1448
+[114] [Step Debug] ->
+
+[113] [Step Debug] ->
+
+[113] [Step Debug] ->
+
+[114] [Step Debug] ->
+
+[114] [Step Debug] <- stop -i 201
+[114] [Step Debug] ->
+
+[113] [Step Debug] <- stop -i 1790
+[113] [Step Debug] ->
+
+[113] [Step Debug] ->
+
+[114] [Step Debug] ->
+
+[113] Log closed at 2024-10-21 20:37:36.014613
+
+[114] Log closed at 2024-10-21 20:37:36.014715
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_remove -i 11 -d 1130023
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- stop -i 12
+[87] [Step Debug] ->
+
+[87] [Step Debug] ->
+
+[87] Log closed at 2024-10-21 20:37:36.261088
+
+[110] Log opened at 2024-10-21 20:37:46.848504
+[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110'
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] Log closed at 2024-10-21 20:37:48.514599
+
+[110] Log opened at 2024-10-21 20:37:48.690894
+[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110'
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] Log closed at 2024-10-21 20:37:49.339948
+
+[102] Log opened at 2024-10-21 20:37:49.712228
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[117] Log opened at 2024-10-21 20:37:49.726220
+[117] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.117'
+[110] Log opened at 2024-10-21 20:37:49.726503
+[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110'
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[117] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[117] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[117] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[117] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[117] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[117] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[117] Log closed at 2024-10-21 20:37:50.731847
+
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 20:37:51.346858
+
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] Log closed at 2024-10-21 20:37:51.693911
+
+[117] Log opened at 2024-10-21 20:37:51.757919
+[117] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.117'
+[117] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[117] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[117] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[117] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[117] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[117] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[117] Log closed at 2024-10-21 20:37:53.377641
+
+[117] Log opened at 2024-10-21 20:37:53.405145
+[117] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.117'
+[117] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] Log opened at 2024-10-21 20:37:53.453310
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] Log opened at 2024-10-21 20:37:53.467362
+[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110'
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[112] Log opened at 2024-10-21 20:37:53.489036
+[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112'
+[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[117] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[117] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[117] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[117] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[117] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[117] Log closed at 2024-10-21 20:37:54.518707
+
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[110] Log closed at 2024-10-21 20:38:08.062995
+
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[102] Log closed at 2024-10-21 20:38:21.891920
+