-
-
-
-
-
-
+
\ No newline at end of file
diff --git a/datos web.txt b/datos web.txt
deleted file mode 100755
index 4213fbb2..00000000
--- a/datos web.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-Database: testCI4
-Usuario: testCI4
-password: 1234
-
-datos web guard:
-email admin: jajaime.jim@gmail.com
-password: 1234
-
-FTP SK-IMN: pjS9~l138
-
diff --git a/from mac to app.txt b/from mac to app.txt
deleted file mode 100755
index 8b159c4f..00000000
--- a/from mac to app.txt
+++ /dev/null
@@ -1,71 +0,0 @@
-Pasos para usar ficheros del mac
-1.- Copiar controlador, modelo, vistas y entidad
-2.- Copiar los ficheros de idioma. Le pone nombre raro (por ejemplo: Manipuladoes.php en lugar de Tarifamanipulado.php). Buscar y reemplazar en todos los ficheros. En este ejemplo: lang('Manipuladoes -> lang('Tarifamanipulado)
-3.- Editar los idiomas
-4.- En las vistas (formulario y lista) cambiar la segunda linea
- Esto: = $this->extend("themes" . config("Basics")->theme["name"] . "/AdminLayout/defaultLayout") ?>
- por esto: =$this->extend('themes/vuexy/main/defaultlayout') ?>
-5.- En las vistas cambiar Themes por themes
-6.- Quitar de la tabla la primera columna para que no se repitan los botones. Es decir:
-
= lang('Basic.global.Action') ?> |
-
-
- =anchor(route_to('editTarifamanipulado', $item->id), lang('Basic.global.edit'), ['class'=>'btn btn-sm btn-warning btn-edit me-1', 'data-id'=>$item->id,]); ?>
- =anchor('#confirm2delete', lang('Basic.global.Delete'), ['class'=>'btn btn-sm btn-danger btn-delete ms-1', 'data-href'=>route_to('deleteTarifamanipulado', $item->id), 'data-bs-toggle'=>'modal', 'data-bs-target'=>'#confirm2delete']); ?>
- |
-
-7.- Modificar las fechas de esto: date('mm/dd/YYYY H:i' a esto date('d/m/Y H:m:s'
-8.- Cambiar los botones de exportar de sitio: "dom": 'lfrtipB' por "dom": 'lfBrtip'
-9.- Poner el botón de añadir debajo del h3 del card header en lugar del footer
-10.- Copiar las nuevas rutas
-
-
-
-
-
-
-
-Pasos para añadir el soft delete a una tabla
-1.- En la bbdd añadir la columna is_deleted (TINYINT, 4 bits, sin signo, valor predeterminado '0')
-2.- En la bbdd añadir la columna deleted_at (TIMESTAMP, permitir NULL, valor predeterminado NULL)
-3.- En la entidad añadir a los atributos:
- "deleted_at" => null,
- "is_deleted" => 0,
-4.- En el modelo. Añadir en allowedFields:
- "deleted_at",
- "is_deleted",
- También añadir la variable protected $deletedField = 'deleted_at';
-
-
-5a.- Sin lazy tables:
- En el controlador:
- En el index añadir debajo de $this->view..
- // Se indica que este controlador trabaja con soft_delete
- $this->soft_delete = true;
- // Se indica el flag para los ficheros borrados
- $this->delete_flag = 1;
- En el edit: justo al principio
- // JJO
- $session = session();
-
- debajo de $sanitizedData = $this->sanitized($postData, $nullIfEmpty);
-
- // JJO
- if(isset($this->model->user_updated_id)){
- $sanitizedData['user_updated_id'] = $session->id_user;
- }
-
-5b.- Con lazy-tables:
- En el modelo cambiar:
- $builder = $this->db
- ->table($this->table . " t1")
- ->select(
- "t1.id AS id, t1.nombre AS nombre, t1.code AS code, t1.code_ot AS code_ot, t1.show_in_client AS show_in_client"
- );
- por
- $builder = $this->db
- ->table($this->table . " t1")
- ->select(
- "t1.id AS id, t1.nombre AS nombre, t1.code AS code, t1.code_ot AS code_ot, t1.show_in_client AS show_in_client"
- )
- ->where("is_deleted", 0);
\ No newline at end of file
diff --git a/git-commands.txt b/git-commands.txt
deleted file mode 100755
index 9f15f702..00000000
--- a/git-commands.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-Crear nueva rama:
-git checkout -b dev/nombre_rama
-
-Reflejar nueva rama en repositorio remoto
-git push --set-upstream origin dev/nombre_rama
-
-Commit con mensaje
-git commit -am "
"
-
-Subir cambios de un commit
-git push
-
diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js
index 51dd354c..11497eca 100644
--- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js
+++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js
@@ -212,7 +212,7 @@ class DatosGenerales {
// Get the selected options
const value = $("#paginasColor").val();
if (value.length >= 0 && Number.isInteger(parseInt(value)) && parseInt(value) >= 0) {
-
+
if (parseInt(value) % 2 != 0) {
return {
valid: false,
@@ -227,14 +227,14 @@ class DatosGenerales {
}
},
paginasNegro: {
- validators: {
- callback: {
+ validators: {
+ callback: {
message: window.translations["validation"].integer_greatherThan_0,
callback: function (input) {
// Get the selected options
const value = $("#paginasNegro").val();
if (value.length >= 0 && Number.isInteger(parseInt(value)) && parseInt(value) >= 0) {
-
+
if (parseInt(value) % 2 != 0) {
return {
valid: false,
@@ -338,6 +338,70 @@ class DatosGenerales {
});
}
+ cargarDatos(datos) {
+
+ this.titulo.val(datos.titulo);
+ this.autor.val(datos.autor);
+ this.isbn.val(datos.isbn);
+ this.coleccion.val(datos.coleccion);
+ this.referenciaCliente.val(datos.referenciaCliente);
+
+ this.tirada1.val(parseInt(datos.tirada));
+ if (datos.tirada2)
+ this.tirada2.val(parseInt(datos.tirada2));
+ if (datos.tirada3)
+ this.tirada3.val(parseInt(datos.tirada3));
+ if (datos.tirada4)
+ this.tirada4.val(parseInt(datos.tirada4));
+
+ if (datos.checkFormatoPersonalizado) {
+ this.checkFormatoPersonalizado.prop(':checked', datos.checkFormatoPersonalizado);
+ this.checkFormatoPersonalizado.trigger('change');
+ this.papel_formato_alto.val(datos.papelFormatoAlto);
+ this.papel_formato_ancho.val(datos.papelFormatoAncho);
+ }
+ else {
+ this.formatoLibro.setOption(datos.papelFormatoId, datos.papelFormatoNombre);
+ 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.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.fresado = $(this.domItem.find("#fresado")[0]);
+ this.cosido = $(this.domItem.find("#cosido")[0]);
+
+ 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");*/
+ }
+
getDimensionLibro() {
let ancho = 0;
@@ -376,9 +440,9 @@ class DatosGenerales {
return tiradas;
}
-
+
getIsColor() {
- if(this.paginasColor.val() > 0) {
+ if (this.paginasColor.val() > 0) {
return true;
}
return false;
@@ -417,11 +481,11 @@ class DatosGenerales {
if (this.fresado.hasClass('selected') || this.cosido.hasClass('selected')) {
$('#tapaDuraLomoRedondo').removeClass('d-none');
- if(this.cosido.hasClass('selected')){
+ if (this.cosido.hasClass('selected')) {
$('#tapaDuraLomoRedondo').addClass('selected');
this.divPaginasCuaderillo.removeClass('d-none');
}
- else{
+ else {
this.divPaginasCuaderillo.addClass('d-none');
}
}
@@ -511,7 +575,7 @@ class DatosGenerales {
$(".papel-interior").removeClass('selected');
$(".interior-color").removeClass('d-none');
this.#handleInteriorLayout('mixto');
-
+
}
else {
$(".interior-color").addClass('d-none');
diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/direcciones.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/direcciones.js
index 0889b1bf..bf3b6caf 100644
--- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/direcciones.js
+++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/direcciones.js
@@ -212,12 +212,12 @@ class Direcciones {
if (unidades == null || unidades <= 0 || unidades == undefined)
return;
- $('#loader').show();
+ $('#loader').modal('show');
let peticion = new Ajax('/misdirecciones/get/' + id, {}, {},
(response) => {
if (this.direcciones.length == 0) {
- $('#loader').hide();
+ $('#loader').modal('hide');
if (entregaPalets) {
this.calcularPresupuesto = true;
}
@@ -237,13 +237,13 @@ class Direcciones {
},
() => {
console.error('Error getting address');
- $('#loader').hide();
+ $('#loader').modal('hide');
});
peticion.get();
} catch (e) {
console.error(e);
- $('#loader').hide();
+ $('#loader').modal('hide');
}
}
diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js
index 307933fa..21b481bf 100644
--- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js
+++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js
@@ -39,7 +39,7 @@ class PresupuestoCliente {
this.ajax_calcular = new Ajax('/presupuestocliente/calcular',
{}, this.datos,
this.#procesarPresupuesto.bind(this),
- () => { $('#loader').hide(); });
+ () => { $('#loader').modal('hide'); });
this.actualizarTiradasEnvio = false;
}
@@ -66,18 +66,21 @@ class PresupuestoCliente {
this.btnPrev.on('click', this.#prevtStep.bind(this));
this.btnSave.on('click', this.#savePresupuesto.bind(this));
- $(".calcular-presupuesto").on('change', this.checkForm.bind(this));
+ //this.RELLENAR_PRESUPUESTO(true);
- this.RELLENAR_PRESUPUESTO(true);
-
- if(window.location.href.includes("edit")){
- //load
+ if (window.location.href.includes("edit")) {
+ $(".calcular-presupuesto").on('change', ()=>{});
+ this.#cargarPresupuesto();
const successMessage = sessionStorage.getItem('message');
- if(successMessage){
+ if (successMessage) {
popSuccessAlert(successMessage);
sessionStorage.removeItem('message');
}
}
+ else{
+ $(".calcular-presupuesto").on('change', this.checkForm.bind(this));
+ }
+
}
@@ -86,7 +89,7 @@ class PresupuestoCliente {
if (event.target.id === 'divDirecciones') {
if (!this.direcciones.calcularPresupuesto) {
this.actualizarTiradasEnvio = false;
- $('#loader').hide();
+ $('#loader').modal('hide');
return;
}
@@ -107,7 +110,7 @@ class PresupuestoCliente {
if (Object.values(datos_to_check).every(this.#isValidDataForm)) {
try {
- $('#loader').show();
+ $('#loader').modal('show');
// Si se está ejecutando la petición, abortar la petición anterior
this.ajax_calcular.abort();
@@ -118,7 +121,7 @@ class PresupuestoCliente {
}
catch (e) {
console.log(e);
- $('#loader').hide();
+ $('#loader').modal('hide');
}
}
@@ -224,40 +227,49 @@ class PresupuestoCliente {
this.#getDatos(true);
try {
- $('#loader').show();
+ $('#loader').modal('show');
- if(window.location.href.includes("edit")){
+ if (window.location.href.includes("edit")) {
this.datos["id"] = window.location.href.split("/").pop();
}
new Ajax('/presupuestocliente/guardar',
this.datos,
{},
(response) => {
- $('#loader').hide();
+ $('#loader').modal('hide');
console.log(response);
- if(this.datos["confirmar"] || window.location.href.includes("add")){
+ if (this.datos["confirmar"] || window.location.href.includes("add")) {
sessionStorage.setItem('message', response.message);
window.location.href = response.url + '/' + response.status;
}
- else{
- popSuccessAlert(response.message);
+ else {
+ popSuccessAlert(response.message);
}
},
- () => { $('#loader').hide(); }
+ () => { $('#loader').modal('hide'); }
).post();
}
catch (e) {
console.log(e);
- $('#loader').hide();
+ $('#loader').modal('hide');
}
}
#procesarPresupuesto(response) {
- $('#loader').hide();
- // checj if response.tiradas exists and is not empty
+ $('#loader').modal('hide');
+
+ if (Object.values(response.errors).some((value) => value !== "")) {
+ popErrorAlert("No se ha podido calcular el presupuesto para los datos proporcionados. Por favor, póngase en contacto con el departamento comercial."
+ , "sk-alert-2", false);
+ return;
+ }
+ else{
+ popAlert2Hide();
+ }
+
if (response.tiradas && response.tiradas.length) {
this.divTiradasPrecios.empty();
@@ -326,8 +338,11 @@ class PresupuestoCliente {
tirada: this.datosGenerales.getTiradas(),
paginas: this.datosGenerales.paginas.val(),
paginasColor: this.datosGenerales.paginasColor.val(),
- paginasCuadernillo: this.datosGenerales.paginasCuadernillo.val(),
+ posPaginasColor: this.datosGenerales.posPaginasColor.val(),
+ paginasColorConsecutivas: this.datosGenerales.paginasColorConsecutivas.is(':checked') ? 1 : 0,
papelInteriorDiferente: this.datosGenerales.papelDiferente.is(':checked') ? 1 : 0,
+ $prototipo: this.datosGenerales.prototipo.is(':checked') ? 1 : 0,
+ paginasCuadernillo: this.datosGenerales.paginasCuadernillo.val(),
tipo: this.datosGenerales.tiposLibro.filter('.selected').attr('id'),
@@ -397,6 +412,32 @@ class PresupuestoCliente {
}
+ #cargarPresupuesto() {
+
+ $('#loader').modal('show');
+ let id = window.location.href.split("/").pop()
+ new Ajax('/presupuestocliente/cargar/' + id,
+ {},
+ {},
+ (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));
+ },
+ () => {
+ $('#loader').modal('hide');
+ $(".calcular-presupuesto").on('change', this.checkForm.bind(this));
+ }
+ ).get();
+ }
+
#isValidDataForm(value) {
if (value === null || value === undefined || value === '') {
diff --git a/httpdocs/themes/vuexy/css/presupuestoCliente.css b/httpdocs/themes/vuexy/css/presupuestoCliente.css
index 11d9ae77..1ad2532f 100644
--- a/httpdocs/themes/vuexy/css/presupuestoCliente.css
+++ b/httpdocs/themes/vuexy/css/presupuestoCliente.css
@@ -1,7 +1,11 @@
.image-container {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ margin-bottom: 20px;
position: relative;
- display: inline-block;
- max-height: 150px;
max-width: 200px;
}
@@ -13,19 +17,19 @@
/* Pseudo-elemento que muestra el tick */
.image-container.selected::after {
- content: '✔';
- /* Símbolo de tick */
+ content: '✔'; /* Símbolo de tick */
position: absolute;
- top: 90px;
- right: 25px;
+ top: calc(50% + 5px);
+ left: calc(100%/2 + 65px); /* Mueve 75px a la derecha fuera del contenedor */
font-size: 50px;
font-weight: bold;
color: green;
- background-color: rgba(255, 255, 255, 0);
+ background-color: rgba(255, 255, 255, 0); /* Fondo transparente */
border-radius: 100%;
padding: 5px;
}
+
.image-presupuesto {
transition: transform 1s ease;
}
@@ -88,17 +92,28 @@
color: var(--fg);
font: 1em/1.5 sans-serif;
height: 100vh;
- position: fixed; /* Fijo para cubrir la pantalla */
- left: 50%; /* Centramos horizontalmente */
- top: 50%; /* Centramos verticalmente */
- transform: translate(-50%, -50%); /* Ajuste para centrar el loader */
- width: auto; /* Se ajusta automáticamente */
- height: auto; /* Se ajusta automáticamente */
- z-index: 9999; /* Mantener por encima de otros elementos */
- display: flex; /* Para centrar contenido */
- justify-content: center; /* Centrar horizontalmente */
- align-items: center; /* Centrar verticalmente */
- background-color: rgba(255, 255, 255, 0); /* Fondo completamente transparente */
+ position: fixed;
+ /* Fijo para cubrir la pantalla */
+ left: 50%;
+ /* Centramos horizontalmente */
+ top: 50%;
+ /* Centramos verticalmente */
+ transform: translate(-50%, -50%);
+ /* Ajuste para centrar el loader */
+ width: auto;
+ /* Se ajusta automáticamente */
+ height: auto;
+ /* Se ajusta automáticamente */
+ z-index: 9999;
+ /* Mantener por encima de otros elementos */
+ display: flex;
+ /* Para centrar contenido */
+ justify-content: center;
+ /* Centrar horizontalmente */
+ align-items: center;
+ /* Centrar verticalmente */
+ background-color: rgba(255, 255, 255, 0);
+ /* Fondo completamente transparente */
}
.book,
diff --git a/sk-commit.bat b/sk-commit.bat
deleted file mode 100755
index 6cc71f7a..00000000
--- a/sk-commit.bat
+++ /dev/null
@@ -1,38 +0,0 @@
-@echo off
-
-REM Obtener la fecha y hora actual
-for /f "delims=" %%a in ('wmic OS Get localdatetime ^| find "."') do set datetime=%%a
-set year=%datetime:~0,4%
-set month=%datetime:~4,2%
-set day=%datetime:~6,2%
-set hour=%datetime:~8,2%
-set minute=%datetime:~10,2%
-set second=%datetime:~12,2%
-
-REM Formatear la fecha y hora
-set fecha_hora=%year%-%month%-%day% %hour%:%minute%:%second%
-
-REM Mensaje de commit automático
-set mensaje_automatico=Actualizacion automatica: %fecha_hora%
-
-REM Solicitar al usuario un mensaje personalizado
-set /p mensaje_usuario=Ingrese un mensaje personalizado (o presione Enter para el automatico):
-
-REM Utilizar el mensaje automático si no se proporciona uno
-if "%mensaje_usuario%"=="" (
- set mensaje_commit=%mensaje_automatico%
-) else (
- set mensaje_commit=%mensaje_usuario%
-)
-
-REM Añadir todos los cambios al área de preparación
-git add .
-
-REM Realizar el commit con el mensaje seleccionado
-git commit -m "%mensaje_commit%"
-
-REM Subir al respositorio remoto
-git push
-
-REM Imprimir mensaje informativo
-echo Se ha realizado el commit con el mensaje: %mensaje_commit%
diff --git a/vscode-extensions.txt b/vscode-extensions.txt
deleted file mode 100644
index 9fed028b..00000000
Binary files a/vscode-extensions.txt and /dev/null differ
diff --git a/xdebug.log b/xdebug.log
index 142842f3..d7aa1507 100644
--- a/xdebug.log
+++ b/xdebug.log
@@ -25519,6 +25519,7 @@
[348] Log closed at 2024-10-17 17:34:23.659733
+<<<<<<< HEAD
[7640] Log opened at 2024-10-17 21:51:03.869662
[7640] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.7640'
[7640] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
@@ -29873,10 +29874,20406 @@
[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[87] Log closed at 2024-10-18 12:26:29.030074
+=======
+[349] Log opened at 2024-10-17 18:13:21.893502
+[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349'
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error"
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error"
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error"
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- run -i 9
+[349] [Step Debug] ->
+
+[349] Log closed at 2024-10-17 18:13:22.114974
+
+[341] Log opened at 2024-10-17 18:13:22.514540
+[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341'
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error"
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error"
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error"
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- run -i 9
+[341] [Step Debug] ->
+
+[341] Log closed at 2024-10-17 18:13:22.696257
+
+[348] Log opened at 2024-10-17 18:13:53.650168
+[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348'
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error"
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error"
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error"
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- run -i 9
+[348] [Step Debug] ->
+
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- stack_get -i 10
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- context_names -i 11 -d 0
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- run -i 12
+[348] [Step Debug] ->
+
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- stack_get -i 13
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- stack_get -i 14
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- context_names -i 15 -d 0
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- stop -i 16
+[348] [Step Debug] ->
+
+[348] [Step Debug] ->
+
+[348] Log closed at 2024-10-17 18:14:12.831203
+
+[320] Log opened at 2024-10-17 18:14:13.059105
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 18:14:14.116928
+
+[344] Log opened at 2024-10-17 18:14:17.653640
+[344] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.344'
+[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[344] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[344] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[344] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[344] Log closed at 2024-10-17 18:14:18.546720
+
+[343] Log opened at 2024-10-17 18:14:18.680348
+[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343'
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] Log closed at 2024-10-17 18:14:19.718893
+
+[345] Log opened at 2024-10-17 18:14:27.270643
+[345] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.345'
+[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[345] Log closed at 2024-10-17 18:14:28.033527
+
+[327] Log opened at 2024-10-17 18:14:28.218913
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 18:14:29.230062
+
+[316] Log opened at 2024-10-17 18:15:39.913525
+[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316'
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] Log closed at 2024-10-17 18:15:43.062500
+
+[316] Log opened at 2024-10-17 18:15:43.398223
+[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316'
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] Log opened at 2024-10-17 18:15:43.498177
+[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348'
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] Log closed at 2024-10-17 18:15:44.092163
+
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] Log closed at 2024-10-17 18:15:44.928013
+
+[341] Log opened at 2024-10-17 18:15:45.023391
+[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341'
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] Log opened at 2024-10-17 18:15:45.217477
+[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349'
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] Log opened at 2024-10-17 18:15:45.219697
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] Log closed at 2024-10-17 18:15:46.469221
+
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] Log closed at 2024-10-17 18:15:47.233819
+
+[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] Log closed at 2024-10-17 18:15:47.596688
+
+[343] Log opened at 2024-10-17 18:16:05.517072
+[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343'
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] Log closed at 2024-10-17 18:16:08.584446
+
+[343] Log opened at 2024-10-17 18:16:08.835228
+[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343'
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] Log opened at 2024-10-17 18:16:08.852888
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] Log closed at 2024-10-17 18:16:09.518277
+
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 18:16:10.217503
+
+[327] Log opened at 2024-10-17 18:16:10.277592
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[345] Log opened at 2024-10-17 18:16:10.420363
+[345] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.345'
+[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[350] Log opened at 2024-10-17 18:16:10.426132
+[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350'
+[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[350] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[345] Log closed at 2024-10-17 18:16:11.696707
+
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 18:16:12.488445
+
+[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[350] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[350] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[350] Log closed at 2024-10-17 18:16:12.912579
+
+[347] Log opened at 2024-10-17 18:16:49.903836
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] Log closed at 2024-10-17 18:16:53.149599
+
+[347] Log opened at 2024-10-17 18:16:53.457984
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] Log opened at 2024-10-17 18:16:53.583291
+[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316'
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] Log closed at 2024-10-17 18:16:54.159426
+
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] Log closed at 2024-10-17 18:16:55.005116
+
+[349] Log opened at 2024-10-17 18:16:55.074494
+[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349'
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] Log opened at 2024-10-17 18:16:55.240787
+[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343'
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] Log opened at 2024-10-17 18:16:55.258872
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] Log closed at 2024-10-17 18:16:56.470887
+
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] Log closed at 2024-10-17 18:16:57.215445
+
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 18:16:57.581826
+
+[316] Log opened at 2024-10-17 18:16:57.682708
+[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316'
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] Log closed at 2024-10-17 18:16:58.874129
+
+[350] Log opened at 2024-10-17 18:17:31.680018
+[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350'
+[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[350] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- run -i 10
+[350] [Step Debug] ->
+
+[350] [Step Debug] ->
+
+[350] Log closed at 2024-10-17 18:17:34.214822
+
+[350] Log opened at 2024-10-17 18:17:34.461531
+[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350'
+[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[350] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[350] [Step Debug] ->
+
+[320] Log opened at 2024-10-17 18:17:34.471479
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[350] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[350] [Step Debug] ->
+
+[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[320] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868
+[350] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868
+[320] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[320] [Step Debug] ->
+
+[350] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[320] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[350] [Step Debug] ->
+
+[320] [Step Debug] <- run -i 10
+[350] [Step Debug] <- run -i 10
+[350] [Step Debug] ->
+
+[350] Log closed at 2024-10-17 18:17:34.650279
+
+[320] [Step Debug] ->
+
+[320] Log closed at 2024-10-17 18:17:35.352000
+
+[320] Log opened at 2024-10-17 18:17:35.430930
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- run -i 10
+[348] Log opened at 2024-10-17 18:17:35.621087
+[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348'
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[348] [Step Debug] ->
+
+[351] Log opened at 2024-10-17 18:17:35.631961
+[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351'
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[348] [Step Debug] ->
+
+[351] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[351] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868
+[348] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1
+[351] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[351] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error"
+[348] [Step Debug] ->
+
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error"
+[348] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[351] [Step Debug] ->
+
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[348] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error"
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 9 -n extended_properties -v 1
+[351] [Step Debug] ->
+
+[348] [Step Debug] <- run -i 10
+[351] [Step Debug] <- run -i 10
+[348] [Step Debug] ->
+
+[348] Log closed at 2024-10-17 18:17:36.401852
+
+[320] [Step Debug] ->
+
+[320] Log closed at 2024-10-17 18:17:36.753110
+
+[351] [Step Debug] ->
+
+[351] Log closed at 2024-10-17 18:17:36.914590
+
+[348] Log opened at 2024-10-17 18:17:37.025556
+[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348'
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- run -i 10
+[348] [Step Debug] ->
+
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- stack_get -i 11
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- eval -i 12 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU=
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- context_names -i 13 -d 0
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- context_get -i 14 -d 0 -c 0
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- step_over -i 15
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- stack_get -i 16
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- eval -i 17 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU=
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- context_names -i 18 -d 0
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- context_get -i 19 -d 0 -c 0
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- step_over -i 20
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- stack_get -i 21
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- eval -i 22 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU=
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- context_names -i 23 -d 0
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- context_get -i 24 -d 0 -c 0
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- step_over -i 25
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- stack_get -i 26
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- eval -i 27 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU=
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- context_names -i 28 -d 0
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- context_get -i 29 -d 0 -c 0
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- step_over -i 30
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- stack_get -i 31
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- stack_get -i 32
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- eval -i 33 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU=
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- context_names -i 34 -d 0
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- context_get -i 35 -d 0 -c 0
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- step_over -i 36
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- stack_get -i 37
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- eval -i 38 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU=
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- context_names -i 39 -d 0
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- context_get -i 40 -d 0 -c 0
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- step_over -i 41
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- stack_get -i 42
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- stack_get -i 43
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- eval -i 44 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU=
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- context_names -i 45 -d 0
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- context_get -i 46 -d 0 -c 0
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- property_get -i 47 -n "$this->model" -d 0 -c 0
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- stop -i 48
+[348] [Step Debug] ->
+
+[348] [Step Debug] ->
+
+[348] Log closed at 2024-10-17 18:18:51.180038
+
+[348] Log opened at 2024-10-17 18:18:53.745875
+[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348'
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] Log closed at 2024-10-17 18:18:56.644831
+
+[348] Log opened at 2024-10-17 18:18:56.838286
+[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348'
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] Log opened at 2024-10-17 18:18:56.863680
+[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349'
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] Log closed at 2024-10-17 18:18:57.555598
+
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] Log closed at 2024-10-17 18:18:58.169487
+
+[348] Log opened at 2024-10-17 18:18:58.286522
+[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348'
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] Log opened at 2024-10-17 18:18:58.494717
+[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349'
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] Log opened at 2024-10-17 18:18:58.494968
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] Log closed at 2024-10-17 18:18:59.738074
+
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] Log closed at 2024-10-17 18:19:00.484217
+
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] Log closed at 2024-10-17 18:19:00.866046
+
+[343] Log opened at 2024-10-17 18:19:10.210513
+[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343'
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] Log closed at 2024-10-17 18:19:11.445873
+
+[327] Log opened at 2024-10-17 18:19:40.564924
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 18:19:43.568949
+
+[327] Log opened at 2024-10-17 18:19:43.771568
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] Log opened at 2024-10-17 18:19:43.777561
+[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316'
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 18:19:44.438807
+
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] Log closed at 2024-10-17 18:19:45.045776
+
+[327] Log opened at 2024-10-17 18:19:45.205651
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log opened at 2024-10-17 18:19:45.433417
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[316] Log opened at 2024-10-17 18:19:45.433205
+[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] Log closed at 2024-10-17 18:19:46.600751
+
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 18:19:47.323813
+
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 18:19:47.692648
+
+[316] Log opened at 2024-10-17 18:19:47.797657
+[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316'
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] Log closed at 2024-10-17 18:19:49.013761
+
+[341] Log opened at 2024-10-17 18:28:22.537183
+[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341'
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] Log closed at 2024-10-17 18:28:25.613167
+
+[341] Log opened at 2024-10-17 18:28:25.828704
+[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341'
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] Log opened at 2024-10-17 18:28:25.841551
+[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349'
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] Log closed at 2024-10-17 18:28:26.496859
+
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] Log closed at 2024-10-17 18:28:27.073688
+
+[349] Log opened at 2024-10-17 18:28:27.200617
+[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349'
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] Log opened at 2024-10-17 18:28:27.422107
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] Log opened at 2024-10-17 18:28:27.422216
+[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343'
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] Log closed at 2024-10-17 18:28:28.566919
+
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] Log closed at 2024-10-17 18:28:29.293762
+
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] Log closed at 2024-10-17 18:28:29.673025
+
+[347] Log opened at 2024-10-17 18:28:29.769937
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] Log closed at 2024-10-17 18:28:31.070026
+
+[327] Log opened at 2024-10-17 18:28:45.863019
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- run -i 11
+[327] [Step Debug] ->
+
+[327] [Step Debug] ->
+
+[327] [Step Debug] ->
+
+[327] Log closed at 2024-10-17 18:28:48.262042
+
+[327] Log opened at 2024-10-17 18:28:48.421055
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[327] [Step Debug] ->
+
+[350] Log opened at 2024-10-17 18:28:48.441672
+[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350'
+[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893
+[327] [Step Debug] ->
+
+[350] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[350] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[327] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error"
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error"
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error"
+[350] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[327] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 8 -n extended_properties -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- run -i 9
+[327] [Step Debug] <- run -i 11
+[327] [Step Debug] ->
+
+[327] Log closed at 2024-10-17 18:28:48.594263
+
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868
+[350] [Step Debug] ->
+
+[350] Log closed at 2024-10-17 18:28:49.241421
+
+[327] Log opened at 2024-10-17 18:28:49.420029
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- run -i 11
+[350] Log opened at 2024-10-17 18:28:49.614191
+[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350'
+[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] Log opened at 2024-10-17 18:28:49.615587
+[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351'
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[350] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[350] [Step Debug] ->
+
+[351] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[350] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[351] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[350] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[351] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[350] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[351] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[350] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[351] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[350] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868
+[350] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868
+[351] [Step Debug] ->
+
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893
+[351] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893
+[350] [Step Debug] ->
+
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[350] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[350] [Step Debug] ->
+
+[351] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[351] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[350] [Step Debug] ->
+
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[350] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[351] [Step Debug] ->
+
+[350] [Step Debug] ->
+
+[351] [Step Debug] <- run -i 11
+[350] [Step Debug] <- run -i 11
+[350] [Step Debug] ->
+
+[350] Log closed at 2024-10-17 18:28:50.279960
+
+[327] [Step Debug] ->
+
+[327] Log closed at 2024-10-17 18:28:50.663560
+
+[351] [Step Debug] ->
+
+[351] Log closed at 2024-10-17 18:28:50.838401
+
+[350] Log opened at 2024-10-17 18:28:50.939394
+[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350'
+[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[350] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- run -i 11
+[350] [Step Debug] ->
+
+[350] [Step Debug] ->
+
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- stack_get -i 12
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- eval -i 13 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU=
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- context_names -i 14 -d 0
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- context_get -i 15 -d 0 -c 0
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_remove -i 16 -d 3500017
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- run -i 17
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- stack_get -i 18
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- eval -i 19 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU=
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- context_names -i 20 -d 0
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- context_get -i 21 -d 0 -c 0
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- step_over -i 22
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- stack_get -i 23
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- eval -i 24 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU=
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- context_names -i 25 -d 0
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- context_get -i 26 -d 0 -c 0
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- run -i 27
+[350] [Step Debug] ->
+
+[350] Log closed at 2024-10-17 18:29:01.608200
+
+[316] Log opened at 2024-10-17 18:29:05.322928
+[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316'
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- run -i 10
+[316] [Step Debug] ->
+
+[316] [Step Debug] ->
+
+[316] Log closed at 2024-10-17 18:29:07.622096
+
+[316] Log opened at 2024-10-17 18:29:07.841906
+[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316'
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[316] [Step Debug] ->
+
+[349] Log opened at 2024-10-17 18:29:07.851971
+[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349'
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893
+[349] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893
+[316] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error"
+[349] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[316] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error"
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error"
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1
+[349] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[316] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 9 -n extended_properties -v 1
+[349] [Step Debug] ->
+
+[316] [Step Debug] <- run -i 10
+[349] [Step Debug] <- run -i 10
+[316] [Step Debug] ->
+
+[316] Log closed at 2024-10-17 18:29:08.036308
+
+[349] [Step Debug] ->
+
+[349] Log closed at 2024-10-17 18:29:08.684218
+
+[316] Log opened at 2024-10-17 18:29:08.794996
+[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316'
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- run -i 10
+[349] Log opened at 2024-10-17 18:29:09.002447
+[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349'
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] Log opened at 2024-10-17 18:29:09.003542
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] ->
+
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[347] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] ->
+
+[347] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[349] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[347] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[349] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[347] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[349] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[347] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[349] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[347] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893
+[347] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893
+[349] [Step Debug] ->
+
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[349] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[347] [Step Debug] ->
+
+[349] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[349] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[347] [Step Debug] ->
+
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[349] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- run -i 10
+[349] [Step Debug] <- run -i 10
+[349] [Step Debug] ->
+
+[349] Log closed at 2024-10-17 18:29:09.638208
+
+[316] [Step Debug] ->
+
+[316] Log closed at 2024-10-17 18:29:09.980693
+
+[347] [Step Debug] ->
+
+[347] Log closed at 2024-10-17 18:29:10.153072
+
+[349] Log opened at 2024-10-17 18:29:10.243948
+[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349'
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- run -i 10
+[349] [Step Debug] ->
+
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- stack_get -i 11
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- eval -i 12 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU=
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- context_names -i 13 -d 0
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- context_get -i 14 -d 0 -c 0
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- property_get -i 15 -n "$tiradas_alternativas" -d 0 -c 0
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- property_get -i 16 -n "$tiradas_alternativas" -d 0 -c 0
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- property_get -i 17 -n "$presupuesto" -d 0 -c 0
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- eval -i 18 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU=
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- property_get -i 19 -n "$presupuesto->tiradas_alternativas_json_data" -d 0 -c 0
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- eval -i 20 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU=
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- context_names -i 21 -d 0
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- property_get -i 22 -n "$presupuesto" -d 0 -c 0
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- context_get -i 23 -d 0 -c 0
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- property_get -i 24 -n "$presupuesto->attributes" -p 0 -d 0 -c 0
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- run -i 25
+[349] [Step Debug] ->
+
+[349] Log closed at 2024-10-17 18:30:01.646869
+
+[327] Log opened at 2024-10-17 18:30:06.183166
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- run -i 9
+[327] [Step Debug] ->
+
+[327] Log closed at 2024-10-17 18:30:08.522898
+
+[327] Log opened at 2024-10-17 18:30:08.712058
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error"
+[327] [Step Debug] ->
+
+[320] Log opened at 2024-10-17 18:30:08.744162
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[320] [Step Debug] ->
+
+[327] [Step Debug] <- run -i 9
+[320] [Step Debug] <- run -i 6
+[327] [Step Debug] ->
+
+[327] Log closed at 2024-10-17 18:30:08.879449
+
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[320] [Step Debug] ->
+
+[320] Log closed at 2024-10-17 18:30:09.544856
+
+[327] Log opened at 2024-10-17 18:30:09.698947
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- run -i 9
+[320] Log opened at 2024-10-17 18:30:09.957890
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] Log opened at 2024-10-17 18:30:09.958845
+[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348'
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] ->
+
+[348] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[320] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[348] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[320] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[348] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[320] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[348] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[320] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[348] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[320] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[348] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error"
+[320] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error"
+[348] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error"
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error"
+[320] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error"
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error"
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- run -i 9
+[320] [Step Debug] <- run -i 9
+[320] [Step Debug] ->
+
+[320] Log closed at 2024-10-17 18:30:10.672659
+
+[327] [Step Debug] ->
+
+[327] Log closed at 2024-10-17 18:30:11.037292
+
+[348] [Step Debug] ->
+
+[348] Log closed at 2024-10-17 18:30:11.194447
+
+[320] Log opened at 2024-10-17 18:30:11.301749
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error"
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error"
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error"
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- run -i 9
+[320] [Step Debug] ->
+
+[320] Log closed at 2024-10-17 18:30:11.873574
+
+[350] Log opened at 2024-10-17 18:30:33.271960
+[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350'
+[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[350] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error"
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error"
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error"
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- run -i 9
+[350] [Step Debug] ->
+
+[350] Log closed at 2024-10-17 18:30:35.615211
+
+[350] Log opened at 2024-10-17 18:30:35.769058
+[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350'
+[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[350] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[350] [Step Debug] ->
+
+[316] Log opened at 2024-10-17 18:30:35.787572
+[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316'
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[350] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error"
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error"
+[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[350] [Step Debug] ->
+
+[316] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error"
+[350] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[316] [Step Debug] ->
+
+[350] [Step Debug] <- run -i 9
+[316] [Step Debug] <- run -i 6
+[350] [Step Debug] ->
+
+[350] Log closed at 2024-10-17 18:30:35.933825
+
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[316] [Step Debug] ->
+
+[316] Log closed at 2024-10-17 18:30:36.620080
+
+[350] Log opened at 2024-10-17 18:30:36.811853
+[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350'
+[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[350] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error"
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error"
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error"
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- run -i 9
+[316] Log opened at 2024-10-17 18:30:37.017611
+[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316'
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] Log opened at 2024-10-17 18:30:37.017796
+[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341'
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] [Step Debug] ->
+
+[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[316] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[341] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[316] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[341] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[316] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[341] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[316] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[341] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[316] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[341] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error"
+[341] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error"
+[341] [Step Debug] ->
+
+[316] [Step Debug] ->
+
+[341] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error"
+[341] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error"
+[316] [Step Debug] ->
+
+[341] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error"
+[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error"
+[341] [Step Debug] ->
+
+[316] [Step Debug] ->
+
+[341] [Step Debug] <- run -i 9
+[316] [Step Debug] <- run -i 9
+[316] [Step Debug] ->
+
+[316] Log closed at 2024-10-17 18:30:37.690917
+
+[350] [Step Debug] ->
+
+[350] Log closed at 2024-10-17 18:30:38.033061
+
+[341] [Step Debug] ->
+
+[341] Log closed at 2024-10-17 18:30:38.203094
+
+[316] Log opened at 2024-10-17 18:30:38.309028
+[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316'
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error"
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error"
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error"
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- run -i 9
+[316] [Step Debug] ->
+
+[316] Log closed at 2024-10-17 18:30:38.975163
+
+[343] Log opened at 2024-10-17 18:30:52.192058
+[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343'
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 894
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- run -i 10
+[343] [Step Debug] ->
+
+[343] [Step Debug] ->
+
+[343] Log closed at 2024-10-17 18:30:54.710644
+
+[343] Log opened at 2024-10-17 18:30:54.897457
+[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343'
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] ->
+
+[347] Log opened at 2024-10-17 18:30:54.905833
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[343] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[347] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[343] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[347] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[343] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[347] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[343] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[347] [Step Debug] ->
+
+[343] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 894
+[347] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 894
+[343] [Step Debug] ->
+
+[347] [Step Debug] ->
+
+[343] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[343] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[347] [Step Debug] ->
+
+[343] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[347] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[343] [Step Debug] ->
+
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[343] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[347] [Step Debug] ->
+
+[343] [Step Debug] ->
+
+[347] [Step Debug] <- run -i 10
+[343] [Step Debug] <- run -i 10
+[343] [Step Debug] ->
+
+[343] Log closed at 2024-10-17 18:30:55.127822
+
+[347] [Step Debug] ->
+
+[347] Log closed at 2024-10-17 18:30:55.714511
+
+[343] Log opened at 2024-10-17 18:30:55.856145
+[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343'
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 894
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- run -i 10
+[347] Log opened at 2024-10-17 18:30:56.026195
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] Log opened at 2024-10-17 18:30:56.026463
+[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349'
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] ->
+
+[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[347] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[349] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[347] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[349] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[347] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[349] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[347] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[349] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[347] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[349] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 894
+[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 894
+[349] [Step Debug] ->
+
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[347] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[349] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[347] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- run -i 10
+[347] [Step Debug] <- run -i 10
+[347] [Step Debug] ->
+
+[347] Log closed at 2024-10-17 18:30:56.670192
+
+[343] [Step Debug] ->
+
+[343] Log closed at 2024-10-17 18:30:57.036478
+
+[349] [Step Debug] ->
+
+[349] Log closed at 2024-10-17 18:30:57.211691
+
+[347] Log opened at 2024-10-17 18:30:57.302200
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 894
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- run -i 10
+[347] [Step Debug] ->
+
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- stack_get -i 11
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- eval -i 12 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU=
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- property_get -i 13 -n "$presupuesto" -d 0 -c 0
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- context_names -i 14 -d 0
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- context_get -i 15 -d 0 -c 0
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU=
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- step_over -i 17
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- stack_get -i 18
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- context_names -i 19 -d 0
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- context_get -i 20 -d 0 -c 0
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- property_get -i 21 -n "$tirada->tirada" -d 0 -c 0
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- context_names -i 22 -d 0
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- context_get -i 23 -d 0 -c 0
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_remove -i 24 -d 3470025
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- run -i 25
+[347] [Step Debug] ->
+
+[347] Log closed at 2024-10-17 18:31:42.838821
+
+[348] Log opened at 2024-10-17 18:31:45.953402
+[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348'
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] Log closed at 2024-10-17 18:31:48.934798
+
+[348] Log opened at 2024-10-17 18:31:49.148699
+[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348'
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] Log opened at 2024-10-17 18:31:49.155442
+[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316'
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] Log closed at 2024-10-17 18:31:49.819731
+
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] Log closed at 2024-10-17 18:31:50.385697
+
+[348] Log opened at 2024-10-17 18:31:50.569551
+[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348'
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] Log opened at 2024-10-17 18:31:50.768733
+[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316'
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[350] Log opened at 2024-10-17 18:31:50.784558
+[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350'
+[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[350] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] Log closed at 2024-10-17 18:31:51.907318
+
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] Log closed at 2024-10-17 18:31:52.661819
+
+[350] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[350] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[350] Log closed at 2024-10-17 18:31:53.035440
+
+[316] Log opened at 2024-10-17 18:31:53.141910
+[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316'
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] Log closed at 2024-10-17 18:31:54.323243
+
+[351] Log opened at 2024-10-17 18:32:31.578269
+[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351'
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] Log closed at 2024-10-17 18:32:34.539889
+
+[351] Log opened at 2024-10-17 18:32:34.761635
+[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351'
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] Log opened at 2024-10-17 18:32:34.780380
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] Log closed at 2024-10-17 18:32:35.446032
+
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 18:32:36.191789
+
+[327] Log opened at 2024-10-17 18:32:36.248097
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] Log opened at 2024-10-17 18:32:36.448317
+[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349'
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] Log opened at 2024-10-17 18:32:36.448243
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] Log closed at 2024-10-17 18:32:37.591778
+
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 18:32:38.380527
+
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] Log closed at 2024-10-17 18:32:38.772134
+
+[349] Log opened at 2024-10-17 18:32:38.866328
+[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349'
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] Log closed at 2024-10-17 18:32:40.111017
+
+[348] Log opened at 2024-10-17 18:32:54.206668
+[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348'
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] Log closed at 2024-10-17 18:32:57.176890
+
+[348] Log opened at 2024-10-17 18:32:57.365719
+[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348'
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] Log opened at 2024-10-17 18:32:57.372234
+[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341'
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] Log closed at 2024-10-17 18:32:58.039787
+
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] Log closed at 2024-10-17 18:32:58.779608
+
+[341] Log opened at 2024-10-17 18:32:58.840348
+[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341'
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] Log opened at 2024-10-17 18:32:58.996362
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] Log opened at 2024-10-17 18:32:59.001068
+[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343'
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 18:33:00.303842
+
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] Log closed at 2024-10-17 18:33:01.058422
+
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] Log closed at 2024-10-17 18:33:01.436880
+
+[320] Log opened at 2024-10-17 18:33:01.485268
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 18:33:02.802828
+
+[316] Log opened at 2024-10-17 18:37:16.878514
+[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316'
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] Log closed at 2024-10-17 18:37:19.751392
+
+[316] Log opened at 2024-10-17 18:37:19.970678
+[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316'
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] Log opened at 2024-10-17 18:37:19.983154
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] Log closed at 2024-10-17 18:37:20.668111
+
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 18:37:21.316271
+
+[327] Log opened at 2024-10-17 18:37:21.461026
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] Log opened at 2024-10-17 18:37:21.680491
+[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351'
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] Log opened at 2024-10-17 18:37:21.695427
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] Log closed at 2024-10-17 18:37:22.810870
+
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 18:37:23.568185
+
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] Log closed at 2024-10-17 18:37:23.921741
+
+[351] Log opened at 2024-10-17 18:37:24.021214
+[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351'
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] Log closed at 2024-10-17 18:37:25.293928
+
+[349] Log opened at 2024-10-17 18:45:17.755306
+[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349'
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 921
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- run -i 10
+[349] [Step Debug] ->
+
+[349] [Step Debug] ->
+
+[349] Log closed at 2024-10-17 18:45:20.142676
+
+[349] Log opened at 2024-10-17 18:45:20.352196
+[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349'
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[349] [Step Debug] ->
+
+[341] Log opened at 2024-10-17 18:45:20.367330
+[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341'
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 921
+[341] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 921
+[349] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 2 -n max_children -v 100
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 3 -n max_data -v 8192
+[341] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[349] [Step Debug] ->
+
+[341] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Fatal error"
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Parse error"
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Unknown error"
+[341] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[349] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 7 -n notify_ok -v 1
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 9 -n extended_properties -v 1
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- run -i 10
+[349] [Step Debug] <- run -i 10
+[349] [Step Debug] ->
+
+[349] Log closed at 2024-10-17 18:45:20.531818
+
+[341] [Step Debug] ->
+
+[341] Log closed at 2024-10-17 18:45:21.167594
+
+[341] Log opened at 2024-10-17 18:45:21.308493
+[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341'
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] Log opened at 2024-10-17 18:45:21.313023
+[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348'
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] [Step Debug] ->
+
+[348] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[341] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[348] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[348] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[348] [Step Debug] ->
+
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[348] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[341] [Step Debug] ->
+
+[348] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[341] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[348] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[348] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[341] [Step Debug] ->
+
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 921
+[341] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 921
+[341] [Step Debug] ->
+
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[341] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[341] [Step Debug] ->
+
+[348] [Step Debug] ->
+
+[341] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[341] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- run -i 10
+[341] [Step Debug] <- run -i 10
+[348] [Step Debug] ->
+
+[348] Log closed at 2024-10-17 18:45:21.977361
+
+[341] [Step Debug] ->
+
+[341] Log closed at 2024-10-17 18:45:22.312163
+
+[320] Log opened at 2024-10-17 18:47:50.472671
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 921
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- run -i 10
+[320] [Step Debug] ->
+
+[320] [Step Debug] ->
+
+[320] Log closed at 2024-10-17 18:47:53.002949
+
+[320] Log opened at 2024-10-17 18:47:53.192336
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 921
+[320] [Step Debug] ->
+
+[327] Log opened at 2024-10-17 18:47:53.210493
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[320] [Step Debug] ->
+
+[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[320] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- run -i 6
+[320] [Step Debug] <- run -i 10
+[320] [Step Debug] ->
+
+[320] Log closed at 2024-10-17 18:47:53.361400
+
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 921
+[327] [Step Debug] ->
+
+[327] Log closed at 2024-10-17 18:47:54.000052
+
+[327] Log opened at 2024-10-17 18:47:54.150642
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 921
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- run -i 10
+[316] Log opened at 2024-10-17 18:47:54.468029
+[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316'
+[347] Log opened at 2024-10-17 18:47:54.470689
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] ->
+
+[316] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[347] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[316] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[347] [Step Debug] ->
+
+[316] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[347] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[316] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[347] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[316] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[347] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 921
+[347] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 921
+[347] [Step Debug] ->
+
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[347] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[316] [Step Debug] ->
+
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[347] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- run -i 10
+[347] [Step Debug] <- run -i 10
+[327] [Step Debug] ->
+
+[327] Log closed at 2024-10-17 18:47:55.076217
+
+[316] [Step Debug] ->
+
+[316] Log closed at 2024-10-17 18:47:55.463880
+
+[347] [Step Debug] ->
+
+[347] Log closed at 2024-10-17 18:47:55.640962
+
+[316] Log opened at 2024-10-17 18:47:55.749323
+[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316'
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 921
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- run -i 10
+[316] [Step Debug] ->
+
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- stack_get -i 11
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- property_get -i 12 -n "$tirada->tirada" -d 0 -c 0
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- context_names -i 13 -d 0
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- context_get -i 14 -d 0 -c 0
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- property_get -i 15 -n "$lineas" -d 0 -c 0
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- property_get -i 16 -n "$lineas[0]" -d 0 -c 0
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- property_get -i 17 -n "$lineas[0]" -d 0 -c 0
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- context_names -i 18 -d 0
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- context_get -i 19 -d 0 -c 0
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- property_get -i 20 -n "$lineas[0]" -d 0 -c 0
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- property_get -i 21 -n "$lineas[0]['atributes']" -d 0 -c 0
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- context_names -i 22 -d 0
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- context_get -i 23 -d 0 -c 0
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- property_get -i 24 -n "$lineas[0]" -d 0 -c 0
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- property_get -i 25 -n "$lineas[0]->atributes" -d 0 -c 0
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- context_names -i 26 -d 0
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- context_get -i 27 -d 0 -c 0
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- property_get -i 28 -n "$lineas[0]" -d 0 -c 0
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- property_get -i 29 -n "$lineas[0]" -d 0 -c 0
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- context_names -i 30 -d 0
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- context_get -i 31 -d 0 -c 0
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- property_get -i 32 -n "$lineas[0]" -d 0 -c 0
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- property_get -i 33 -n "$lineas[0]->casts" -p 0 -d 0 -c 0
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- property_get -i 34 -n "$lineas[0]->attributes" -p 0 -d 0 -c 0
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- property_get -i 35 -n "$paginas" -d 0 -c 0
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- property_get -i 36 -n "$paginasNegro" -d 0 -c 0
+[316] [Step Debug] ->
+
+[351] Log opened at 2024-10-17 18:54:13.174746
+[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351'
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[316] [Step Debug] <- breakpoint_remove -i 37 -d 3160124
+[351] [Step Debug] ->
+
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 38 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[316] [Step Debug] ->
+
+[316] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- run -i 10
+[316] [Step Debug] <- run -i 39
+[316] [Step Debug] ->
+
+[316] Log closed at 2024-10-17 18:54:15.679345
+
+[351] [Step Debug] ->
+
+[351] [Step Debug] ->
+
+[351] Log closed at 2024-10-17 18:54:15.863738
+
+[316] Log opened at 2024-10-17 18:54:15.976865
+[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316'
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- run -i 10
+[316] [Step Debug] ->
+
+[316] Log closed at 2024-10-17 18:54:16.267519
+
+[341] Log opened at 2024-10-17 18:54:57.434484
+[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341'
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- run -i 10
+[341] [Step Debug] ->
+
+[341] [Step Debug] ->
+
+[341] Log closed at 2024-10-17 18:54:58.268013
+
+[350] Log opened at 2024-10-17 18:55:20.970732
+[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350'
+[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[350] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- run -i 10
+[350] [Step Debug] ->
+
+[350] [Step Debug] ->
+
+[350] Log closed at 2024-10-17 18:55:22.448037
+
+[350] Log opened at 2024-10-17 18:55:22.623742
+[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350'
+[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[350] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[350] [Step Debug] ->
+
+[349] Log opened at 2024-10-17 18:55:22.635037
+[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349'
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[349] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[350] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 2 -n max_children -v 100
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 3 -n max_data -v 8192
+[349] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[350] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Fatal error"
+[349] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[350] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Parse error"
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Unknown error"
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 7 -n notify_ok -v 1
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 9 -n extended_properties -v 1
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- run -i 10
+[350] [Step Debug] <- run -i 10
+[350] [Step Debug] ->
+
+[350] Log closed at 2024-10-17 18:55:22.869256
+
+[349] [Step Debug] ->
+
+[349] Log closed at 2024-10-17 18:55:23.499229
+
+[349] Log opened at 2024-10-17 18:55:23.537998
+[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349'
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[349] [Step Debug] ->
+
+[343] Log opened at 2024-10-17 18:55:23.547329
+[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343'
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[349] [Step Debug] ->
+
+[343] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[349] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[343] [Step Debug] ->
+
+[348] Log opened at 2024-10-17 18:55:23.559399
+[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348'
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[343] [Step Debug] ->
+
+[349] [Step Debug] ->
+
+[348] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[343] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[349] [Step Debug] ->
+
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[343] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[349] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error"
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error"
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error"
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 9 -n extended_properties -v 1
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- run -i 10
+[343] [Step Debug] <- run -i 10
+[349] [Step Debug] <- run -i 10
+[343] [Step Debug] ->
+
+[343] Log closed at 2024-10-17 18:55:24.240604
+
+[349] [Step Debug] ->
+
+[349] Log closed at 2024-10-17 18:55:24.633574
+
+[348] [Step Debug] ->
+
+[348] Log closed at 2024-10-17 18:55:24.800583
+
+[347] Log opened at 2024-10-17 18:55:32.508394
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- run -i 10
+[347] [Step Debug] ->
+
+[347] Log closed at 2024-10-17 18:55:33.297856
+
+[347] Log opened at 2024-10-17 18:55:34.024494
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[347] [Step Debug] ->
+
+[351] Log opened at 2024-10-17 18:55:34.086202
+[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351'
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[351] [Step Debug] ->
+
+[347] [Step Debug] <- run -i 10
+[351] [Step Debug] <- run -i 6
+[316] Log opened at 2024-10-17 18:55:34.424010
+[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316'
+[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[316] [Step Debug] ->
+
+[341] Log opened at 2024-10-17 18:55:34.438802
+[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341'
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[316] [Step Debug] ->
+
+[341] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[341] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[316] [Step Debug] ->
+
+[341] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 6 -n extended_properties -v 1
+[341] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[341] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[341] [Step Debug] ->
+
+[316] [Step Debug] ->
+
+[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[316] [Step Debug] ->
+
+[341] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[316] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[316] [Step Debug] ->
+
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[341] [Step Debug] ->
+
+[347] [Step Debug] ->
+
+[347] Log closed at 2024-10-17 18:55:34.767106
+
+[349] Log opened at 2024-10-17 18:55:34.961779
+[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349'
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[349] [Step Debug] ->
+
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[351] [Step Debug] ->
+
+[351] Log closed at 2024-10-17 18:55:34.990764
+
+[349] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[349] [Step Debug] ->
+
+[350] Log opened at 2024-10-17 18:55:35.122526
+[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350'
+[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[350] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[350] [Step Debug] ->
+
+[327] Log opened at 2024-10-17 18:55:35.208111
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[327] [Step Debug] ->
+
+[341] [Step Debug] <- run -i 10
+[316] [Step Debug] <- run -i 10
+[327] [Step Debug] <- run -i 6
+[350] [Step Debug] <- run -i 10
+[349] [Step Debug] <- run -i 10
+[320] Log opened at 2024-10-17 18:55:35.306825
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[320] [Step Debug] ->
+
+[343] Log opened at 2024-10-17 18:55:35.752336
+[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343'
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[343] [Step Debug] ->
+
+[348] Log opened at 2024-10-17 18:55:35.911313
+[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348'
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[348] [Step Debug] ->
+
+[316] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[348] [Step Debug] ->
+
+[316] Log closed at 2024-10-17 18:55:35.953821
+
+[349] [Step Debug] ->
+
+[349] Log closed at 2024-10-17 18:55:36.191267
+
+[350] [Step Debug] ->
+
+[350] Log closed at 2024-10-17 18:55:36.427364
+
+[341] [Step Debug] ->
+
+[341] Log closed at 2024-10-17 18:55:36.637210
+
+[347] Log opened at 2024-10-17 18:55:36.708509
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[347] [Step Debug] ->
+
+[351] Log opened at 2024-10-17 18:55:36.804891
+[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351'
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[351] [Step Debug] ->
+
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[327] [Step Debug] ->
+
+[327] Log closed at 2024-10-17 18:55:36.862844
+
+[352] Log opened at 2024-10-17 18:55:36.875661
+[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352'
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[352] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[351] [Step Debug] ->
+
+[352] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- feature_set -i 6 -n extended_properties -v 1
+[352] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[351] [Step Debug] ->
+
+[352] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[352] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[351] [Step Debug] ->
+
+[320] [Step Debug] <- run -i 10
+[352] [Step Debug] <- run -i 10
+[351] [Step Debug] <- run -i 10
+[343] [Step Debug] <- run -i 10
+[347] [Step Debug] <- run -i 10
+[348] [Step Debug] <- run -i 10
+[351] [Step Debug] ->
+
+[351] Log closed at 2024-10-17 18:55:37.789842
+
+[352] [Step Debug] ->
+
+[352] Log closed at 2024-10-17 18:55:37.997987
+
+[347] [Step Debug] ->
+
+[347] Log closed at 2024-10-17 18:55:38.225873
+
+[320] [Step Debug] ->
+
+[320] Log closed at 2024-10-17 18:55:38.456936
+
+[343] [Step Debug] ->
+
+[343] Log closed at 2024-10-17 18:55:38.658774
+
+[348] [Step Debug] ->
+
+[348] Log closed at 2024-10-17 18:55:38.848469
+
+[349] Log opened at 2024-10-17 18:55:46.398556
+[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349'
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- run -i 10
+[349] [Step Debug] ->
+
+[349] Log closed at 2024-10-17 18:55:47.076190
+
+[350] Log opened at 2024-10-17 18:56:20.393797
+[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350'
+[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[350] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- run -i 10
+[350] [Step Debug] ->
+
+[350] [Step Debug] ->
+
+[350] Log closed at 2024-10-17 18:56:23.197373
+
+[341] Log opened at 2024-10-17 18:56:29.054598
+[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341'
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- run -i 10
+[341] [Step Debug] ->
+
+[341] Log closed at 2024-10-17 18:56:29.800181
+
+[327] Log opened at 2024-10-17 18:56:35.560758
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- run -i 10
+[327] [Step Debug] ->
+
+[327] Log closed at 2024-10-17 18:56:36.349930
+
+[327] Log opened at 2024-10-17 18:56:40.013980
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- run -i 10
+[327] [Step Debug] ->
+
+[327] [Step Debug] ->
+
+[327] Log closed at 2024-10-17 18:56:42.943369
+
+[327] Log opened at 2024-10-17 18:56:42.991323
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- run -i 10
+[327] [Step Debug] ->
+
+[327] Log closed at 2024-10-17 18:56:43.283324
+
+[327] Log opened at 2024-10-17 18:56:43.459326
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- run -i 10
+[327] [Step Debug] ->
+
+[327] Log closed at 2024-10-17 18:56:43.697733
+
+[351] Log opened at 2024-10-17 18:57:32.334186
+[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351'
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- run -i 10
+[351] [Step Debug] ->
+
+[351] [Step Debug] ->
+
+[351] Log closed at 2024-10-17 18:57:33.881020
+
+[351] Log opened at 2024-10-17 18:57:34.111753
+[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351'
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- run -i 10
+[351] [Step Debug] ->
+
+[351] Log closed at 2024-10-17 18:57:35.193008
+
+[347] Log opened at 2024-10-17 18:57:35.236358
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[347] [Step Debug] ->
+
+[320] Log opened at 2024-10-17 18:57:35.247121
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[347] [Step Debug] ->
+
+[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[320] [Step Debug] ->
+
+[351] Log opened at 2024-10-17 18:57:35.255744
+[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351'
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[320] [Step Debug] ->
+
+[351] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[320] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[347] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[351] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 6 -n extended_properties -v 1
+[320] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 2 -n max_children -v 100
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 3 -n max_data -v 8192
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Fatal error"
+[347] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[351] [Step Debug] ->
+
+[347] [Step Debug] ->
+
+[320] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Parse error"
+[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[351] [Step Debug] ->
+
+[320] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Unknown error"
+[351] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[320] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[347] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 7 -n notify_ok -v 1
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 9 -n extended_properties -v 1
+[351] [Step Debug] ->
+
+[347] [Step Debug] <- run -i 10
+[351] [Step Debug] <- run -i 10
+[320] [Step Debug] <- run -i 10
+[320] [Step Debug] ->
+
+[320] Log closed at 2024-10-17 18:57:35.921809
+
+[347] [Step Debug] ->
+
+[347] Log closed at 2024-10-17 18:57:36.261578
+
+[351] [Step Debug] ->
+
+[351] Log closed at 2024-10-17 18:57:36.427938
+
+[343] Log opened at 2024-10-17 18:58:00.660872
+[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343'
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- run -i 10
+[343] [Step Debug] ->
+
+[343] Log closed at 2024-10-17 18:58:01.433654
+
+[348] Log opened at 2024-10-17 18:58:10.648692
+[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348'
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- run -i 10
+[348] [Step Debug] ->
+
+[348] Log closed at 2024-10-17 18:58:11.435912
+
+[348] Log opened at 2024-10-17 18:58:13.599052
+[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348'
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- run -i 10
+[348] [Step Debug] ->
+
+[348] Log closed at 2024-10-17 18:58:14.352092
+
+[348] Log opened at 2024-10-17 18:58:15.615827
+[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348'
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[348] [Step Debug] ->
+
+[352] Log opened at 2024-10-17 18:58:15.685674
+[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352'
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[352] [Step Debug] ->
+
+[348] [Step Debug] <- run -i 10
+[352] [Step Debug] <- run -i 6
+[349] Log opened at 2024-10-17 18:58:15.858551
+[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349'
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[349] [Step Debug] ->
+
+[350] Log opened at 2024-10-17 18:58:15.941875
+[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350'
+[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[350] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[350] [Step Debug] ->
+
+[341] Log opened at 2024-10-17 18:58:16.023169
+[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341'
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[341] [Step Debug] ->
+
+[341] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[341] [Step Debug] ->
+
+[348] [Step Debug] ->
+
+[348] Log closed at 2024-10-17 18:58:16.416566
+
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[352] [Step Debug] ->
+
+[352] Log closed at 2024-10-17 18:58:16.617037
+
+[327] Log opened at 2024-10-17 18:58:24.700424
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[327] [Step Debug] ->
+
+[350] [Step Debug] <- run -i 10
+[341] [Step Debug] <- run -i 10
+[349] [Step Debug] <- run -i 10
+[327] [Step Debug] <- run -i 10
+[350] [Step Debug] ->
+
+[350] Log closed at 2024-10-17 18:58:25.498071
+
+[349] [Step Debug] ->
+
+[349] Log closed at 2024-10-17 18:58:25.707143
+
+[327] [Step Debug] ->
+
+[327] Log closed at 2024-10-17 18:58:25.990518
+
+[341] [Step Debug] ->
+
+[341] Log closed at 2024-10-17 18:58:26.215919
+
+[327] Log opened at 2024-10-17 18:58:27.281120
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[327] [Step Debug] ->
+
+[347] Log opened at 2024-10-17 18:58:27.357456
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[347] [Step Debug] ->
+
+[327] [Step Debug] <- run -i 10
+[347] [Step Debug] <- run -i 6
+[320] Log opened at 2024-10-17 18:58:27.471167
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[320] [Step Debug] ->
+
+[351] Log opened at 2024-10-17 18:58:27.564484
+[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351'
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[351] [Step Debug] ->
+
+[351] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[351] [Step Debug] ->
+
+[327] [Step Debug] ->
+
+[327] Log closed at 2024-10-17 18:58:28.044126
+
+[347] [Step Debug] ->
+
+[347] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[347] [Step Debug] ->
+
+[347] Log closed at 2024-10-17 18:58:28.255182
+
+[343] Log opened at 2024-10-17 18:58:28.526154
+[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343'
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[343] [Step Debug] ->
+
+[343] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[343] [Step Debug] ->
+
+[351] [Step Debug] <- run -i 10
+[320] [Step Debug] <- run -i 10
+[343] [Step Debug] <- run -i 10
+[348] Log opened at 2024-10-17 18:58:28.742946
+[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348'
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[348] [Step Debug] ->
+
+[348] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[348] [Step Debug] ->
+
+[352] Log opened at 2024-10-17 18:58:28.857145
+[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352'
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] <- run -i 10
+[352] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[352] [Step Debug] ->
+
+[350] Log opened at 2024-10-17 18:58:28.973268
+[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350'
+[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[350] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- run -i 6
+[352] [Step Debug] <- run -i 10
+[349] Log opened at 2024-10-17 18:58:29.089669
+[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349'
+[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[349] [Step Debug] ->
+
+[349] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[349] [Step Debug] ->
+
+[351] [Step Debug] ->
+
+[351] Log closed at 2024-10-17 18:58:29.254354
+
+[343] [Step Debug] ->
+
+[343] Log closed at 2024-10-17 18:58:29.469089
+
+[320] [Step Debug] ->
+
+[320] Log closed at 2024-10-17 18:58:29.693941
+
+[348] [Step Debug] ->
+
+[348] Log closed at 2024-10-17 18:58:29.899689
+
+[350] [Step Debug] ->
+
+[350] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[350] [Step Debug] ->
+
+[350] Log closed at 2024-10-17 18:58:30.103093
+
+[352] [Step Debug] ->
+
+[352] Log closed at 2024-10-17 18:58:30.306905
+
+[349] [Step Debug] <- stop -i 10
+[349] [Step Debug] ->
+
+[341] Log opened at 2024-10-17 18:58:40.957239
+[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341'
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] Log closed at 2024-10-17 18:58:42.166796
+
+[327] Log opened at 2024-10-17 18:59:07.047746
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 18:59:10.616157
+
+[347] Log opened at 2024-10-17 18:59:16.434843
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] Log closed at 2024-10-17 18:59:17.717883
+
+[353] Log opened at 2024-10-17 18:59:23.226114
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 18:59:24.512238
+
+[353] Log opened at 2024-10-17 18:59:28.289515
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 18:59:31.672615
+
+[353] Log opened at 2024-10-17 18:59:31.747860
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 18:59:32.748934
+
+[351] Log opened at 2024-10-17 19:06:22.041823
+[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351'
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] Log closed at 2024-10-17 19:06:24.072136
+
+[351] Log opened at 2024-10-17 19:06:24.311164
+[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351'
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] Log opened at 2024-10-17 19:06:24.329897
+[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343'
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] Log closed at 2024-10-17 19:06:25.002149
+
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] Log closed at 2024-10-17 19:06:25.611164
+
+[343] Log opened at 2024-10-17 19:06:25.797198
+[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343'
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] Log opened at 2024-10-17 19:06:25.807109
+[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348'
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[350] Log opened at 2024-10-17 19:06:25.817821
+[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350'
+[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[350] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] Log closed at 2024-10-17 19:06:26.934056
+
+[350] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[350] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[350] Log closed at 2024-10-17 19:06:27.285234
+
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] Log closed at 2024-10-17 19:06:28.054349
+
+[352] Log opened at 2024-10-17 19:06:37.863850
+[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352'
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] Log closed at 2024-10-17 19:06:39.138487
+
+[352] Log opened at 2024-10-17 19:06:39.259159
+[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352'
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] Log opened at 2024-10-17 19:06:39.356506
+[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341'
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] Log opened at 2024-10-17 19:06:39.424861
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] Log opened at 2024-10-17 19:06:39.517252
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log opened at 2024-10-17 19:06:39.647881
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log opened at 2024-10-17 19:06:39.868014
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] Log opened at 2024-10-17 19:06:40.008222
+[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351'
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] Log opened at 2024-10-17 19:06:40.113592
+[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343'
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] Log opened at 2024-10-17 19:06:40.227614
+[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348'
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] Log closed at 2024-10-17 19:06:40.519793
+
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] Log closed at 2024-10-17 19:06:40.940233
+
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 19:06:41.356392
+
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] Log closed at 2024-10-17 19:06:41.764115
+
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 19:06:42.185451
+
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 19:06:42.606477
+
+[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] Log closed at 2024-10-17 19:06:43.005180
+
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] Log closed at 2024-10-17 19:06:43.417265
+
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[348] Log closed at 2024-10-17 19:06:43.830988
+
+[352] Log opened at 2024-10-17 19:06:49.902305
+[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352'
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] Log closed at 2024-10-17 19:06:51.038096
+
+[354] Log opened at 2024-10-17 19:07:14.352464
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-10-17 19:07:17.659622
+
+[327] Log opened at 2024-10-17 19:07:39.477801
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 19:07:41.414198
+
+[327] Log opened at 2024-10-17 19:07:41.749350
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] Log opened at 2024-10-17 19:07:41.849152
+[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343'
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 19:07:42.450141
+
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] Log closed at 2024-10-17 19:07:43.290917
+
+[320] Log opened at 2024-10-17 19:07:43.357042
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] Log opened at 2024-10-17 19:07:43.485137
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] Log opened at 2024-10-17 19:07:43.487731
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 19:07:44.624591
+
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 19:07:45.401457
+
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] Log closed at 2024-10-17 19:07:45.755136
+
+[352] Log opened at 2024-10-17 19:07:52.032434
+[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352'
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] Log opened at 2024-10-17 19:07:52.076463
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] Log opened at 2024-10-17 19:07:52.910765
+[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341'
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[355] Log opened at 2024-10-17 19:07:53.016938
+[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355'
+[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log opened at 2024-10-17 19:07:53.118295
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-10-17 19:07:53.285193
+
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] Log opened at 2024-10-17 19:07:53.542950
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] Log opened at 2024-10-17 19:07:53.672777
+[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343'
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] Log closed at 2024-10-17 19:07:53.771294
+
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] Log opened at 2024-10-17 19:07:53.901208
+[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351'
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] Log closed at 2024-10-17 19:07:54.213640
+
+[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] Log opened at 2024-10-17 19:07:54.326126
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[355] Log closed at 2024-10-17 19:07:54.666939
+
+[347] Log opened at 2024-10-17 19:07:54.754980
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 19:07:55.064892
+
+[354] Log opened at 2024-10-17 19:07:55.127053
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] Log opened at 2024-10-17 19:07:55.252941
+[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352'
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] Log opened at 2024-10-17 19:07:55.352872
+[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341'
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 19:07:55.458997
+
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[355] Log opened at 2024-10-17 19:07:55.501835
+[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355'
+[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log opened at 2024-10-17 19:07:55.587120
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log opened at 2024-10-17 19:07:55.710292
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[356] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log opened at 2024-10-17 19:07:55.805398
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] Log closed at 2024-10-17 19:07:55.888812
+
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[351] Log closed at 2024-10-17 19:07:56.323367
+
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 19:07:56.716376
+
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] Log closed at 2024-10-17 19:07:57.142722
+
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-10-17 19:07:57.532316
+
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] Log closed at 2024-10-17 19:07:57.944732
+
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] Log closed at 2024-10-17 19:07:58.346383
+
+[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[355] Log closed at 2024-10-17 19:07:58.740794
+
+[356] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[356] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[356] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-10-17 19:07:59.148994
+
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 19:07:59.584361
+
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 19:07:59.976168
+
+[327] Log opened at 2024-10-17 19:08:04.463402
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] Log opened at 2024-10-17 19:08:04.565974
+[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343'
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 19:08:05.644660
+
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[343] Log closed at 2024-10-17 19:08:06.035722
+
+[353] Log opened at 2024-10-17 19:08:42.537482
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 19:08:45.824625
+
+[347] Log opened at 2024-10-17 19:08:58.930565
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] Log closed at 2024-10-17 19:09:02.468218
+
+[352] Log opened at 2024-10-17 19:10:19.409409
+[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352'
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] Log closed at 2024-10-17 19:10:21.344416
+
+[352] Log opened at 2024-10-17 19:10:21.739806
+[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352'
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] Log opened at 2024-10-17 19:10:21.822537
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] Log closed at 2024-10-17 19:10:22.438505
+
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 19:10:23.212767
+
+[320] Log opened at 2024-10-17 19:10:23.421093
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[355] Log opened at 2024-10-17 19:10:23.544882
+[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355'
+[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] Log opened at 2024-10-17 19:10:23.545804
+[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341'
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[355] Log closed at 2024-10-17 19:10:24.800108
+
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 19:10:25.561331
+
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[341] Log closed at 2024-10-17 19:10:25.951826
+
+[353] Log opened at 2024-10-17 19:10:37.135626
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] Log opened at 2024-10-17 19:10:37.192807
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log opened at 2024-10-17 19:10:37.522728
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log opened at 2024-10-17 19:10:37.753971
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] Log opened at 2024-10-17 19:10:37.835119
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log opened at 2024-10-17 19:10:37.971900
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] Log opened at 2024-10-17 19:10:38.142484
+[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352'
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[356] Log opened at 2024-10-17 19:10:38.267906
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[355] Log opened at 2024-10-17 19:10:38.337692
+[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355'
+[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 19:10:38.458428
+
+[356] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] Log closed at 2024-10-17 19:10:38.943933
+
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-10-17 19:10:39.424593
+
+[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-10-17 19:10:39.864601
+
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 19:10:40.265292
+
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 19:10:40.682582
+
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] Log closed at 2024-10-17 19:10:41.089447
+
+[356] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[356] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[356] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-10-17 19:10:41.542916
+
+[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[355] Log closed at 2024-10-17 19:10:41.955829
+
+[355] Log opened at 2024-10-17 19:10:43.803895
+[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355'
+[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[355] Log closed at 2024-10-17 19:10:45.122795
+
+[353] Log opened at 2024-10-17 19:10:45.126613
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] Log opened at 2024-10-17 19:10:45.197212
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log opened at 2024-10-17 19:10:45.349211
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log opened at 2024-10-17 19:10:45.422026
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] Log opened at 2024-10-17 19:10:45.492625
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log opened at 2024-10-17 19:10:45.680889
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log opened at 2024-10-17 19:10:45.736430
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] Log opened at 2024-10-17 19:10:45.866589
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] Log opened at 2024-10-17 19:10:45.934755
+[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352'
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 19:10:46.417173
+
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] Log closed at 2024-10-17 19:10:46.828887
+
+[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log closed at 2024-10-17 19:10:47.249696
+
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-10-17 19:10:47.676042
+
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-10-17 19:10:48.117690
+
+[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-10-17 19:10:48.510089
+
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 19:10:48.930416
+
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 19:10:49.352937
+
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] Log closed at 2024-10-17 19:10:49.765322
+
+[363] Log opened at 2024-10-17 19:10:56.214619
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-10-17 19:10:57.371045
+
+[353] Log opened at 2024-10-17 19:11:18.276080
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 19:11:21.762437
+
+[347] Log opened at 2024-10-17 19:11:38.197018
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] Log closed at 2024-10-17 19:11:41.073043
+
+[361] Log opened at 2024-10-17 19:12:05.168866
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log closed at 2024-10-17 19:12:07.167131
+
+[361] Log opened at 2024-10-17 19:12:07.408118
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] Log opened at 2024-10-17 19:12:07.415471
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log closed at 2024-10-17 19:12:08.095000
+
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-10-17 19:12:08.730717
+
+[362] Log opened at 2024-10-17 19:12:08.789466
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] Log opened at 2024-10-17 19:12:08.934614
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[359] Log opened at 2024-10-17 19:12:08.934676
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-10-17 19:12:10.042449
+
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-10-17 19:12:10.856570
+
+[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-10-17 19:12:11.223157
+
+[320] Log opened at 2024-10-17 19:12:17.635145
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 19:12:18.886396
+
+[320] Log opened at 2024-10-17 19:12:19.746671
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] Log opened at 2024-10-17 19:12:19.829999
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] Log opened at 2024-10-17 19:12:19.981211
+[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352'
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log opened at 2024-10-17 19:12:20.076156
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log opened at 2024-10-17 19:12:20.183550
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] Log opened at 2024-10-17 19:12:20.330604
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] Log opened at 2024-10-17 19:12:20.370341
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log opened at 2024-10-17 19:12:20.431212
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log opened at 2024-10-17 19:12:20.572994
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 19:12:20.949187
+
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 19:12:21.350013
+
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] Log closed at 2024-10-17 19:12:21.739372
+
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-10-17 19:12:22.155794
+
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 19:12:22.568529
+
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] Log closed at 2024-10-17 19:12:23.003221
+
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-10-17 19:12:23.408863
+
+[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log closed at 2024-10-17 19:12:23.820847
+
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-10-17 19:12:24.247911
+
+[359] Log opened at 2024-10-17 19:12:29.802366
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] Log opened at 2024-10-17 19:12:29.845289
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-10-17 19:12:30.942681
+
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 19:12:31.342953
+
+[327] Log opened at 2024-10-17 19:12:54.487090
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 19:12:57.829637
+
+[352] Log opened at 2024-10-17 19:14:49.125430
+[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352'
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] Log closed at 2024-10-17 19:14:51.134618
+
+[352] Log opened at 2024-10-17 19:14:51.368912
+[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352'
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] Log opened at 2024-10-17 19:14:51.374214
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] Log closed at 2024-10-17 19:14:52.042471
+
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-10-17 19:14:52.705254
+
+[363] Log opened at 2024-10-17 19:14:52.763288
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] Log opened at 2024-10-17 19:14:52.903325
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] Log opened at 2024-10-17 19:14:52.904443
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 19:14:53.970381
+
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-10-17 19:14:54.720028
+
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] Log closed at 2024-10-17 19:14:55.090861
+
+[353] Log opened at 2024-10-17 19:14:58.512899
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] Log opened at 2024-10-17 19:14:58.583730
+[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347'
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log opened at 2024-10-17 19:14:59.385584
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[361] Log opened at 2024-10-17 19:14:59.495943
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log opened at 2024-10-17 19:14:59.698300
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[359] Log opened at 2024-10-17 19:14:59.797438
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 19:14:59.812258
+
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] Log opened at 2024-10-17 19:14:59.941546
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log opened at 2024-10-17 19:15:00.072117
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log opened at 2024-10-17 19:15:00.143555
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] Log opened at 2024-10-17 19:15:00.241195
+[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352'
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[347] Log closed at 2024-10-17 19:15:00.319665
+
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] Log opened at 2024-10-17 19:15:00.369010
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-10-17 19:15:00.765784
+
+[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log closed at 2024-10-17 19:15:01.171756
+
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] Log closed at 2024-10-17 19:15:01.589460
+
+[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-10-17 19:15:01.992219
+
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 19:15:02.390442
+
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 19:15:02.805654
+
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-10-17 19:15:03.229713
+
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] Log closed at 2024-10-17 19:15:03.640383
+
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 19:15:04.030995
+
+[353] Log opened at 2024-10-17 19:15:08.633620
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] Log opened at 2024-10-17 19:15:08.691947
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 19:15:09.815772
+
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-10-17 19:15:10.228085
+
+[366] Log opened at 2024-10-17 19:15:29.478550
+[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366'
+[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[366] Log closed at 2024-10-17 19:15:32.835847
+
+[367] Log opened at 2024-10-17 19:17:11.876819
+[367] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.367'
+[367] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[367] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[367] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[367] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[367] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[367] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[367] Log closed at 2024-10-17 19:17:13.802086
+
+[367] Log opened at 2024-10-17 19:17:14.049052
+[367] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.367'
+[367] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[359] Log opened at 2024-10-17 19:17:14.057492
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[367] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[367] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[367] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[367] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[367] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[367] Log closed at 2024-10-17 19:17:14.743473
+
+[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-10-17 19:17:15.378835
+
+[359] Log opened at 2024-10-17 19:17:15.430352
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] Log opened at 2024-10-17 19:17:15.605482
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] Log opened at 2024-10-17 19:17:15.629749
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-10-17 19:17:16.757687
+
+[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-10-17 19:17:17.521940
+
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 19:17:17.876908
+
+[354] Log opened at 2024-10-17 19:17:20.215272
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] Log opened at 2024-10-17 19:17:21.479496
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] Log opened at 2024-10-17 19:17:21.546708
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-10-17 19:17:21.562689
+
+[352] Log opened at 2024-10-17 19:17:21.631889
+[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352'
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log opened at 2024-10-17 19:17:21.726762
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log opened at 2024-10-17 19:17:21.967576
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 19:17:22.688614
+
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-10-17 19:17:23.099156
+
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] Log closed at 2024-10-17 19:17:23.510324
+
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 19:17:23.916457
+
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[366] Log opened at 2024-10-17 19:17:24.089781
+[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366'
+[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-10-17 19:17:24.331120
+
+[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[366] Log closed at 2024-10-17 19:17:25.224287
+
+[366] Log opened at 2024-10-17 19:17:29.616917
+[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366'
+[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[359] Log opened at 2024-10-17 19:17:29.712192
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[366] Log closed at 2024-10-17 19:17:30.800173
+
+[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-10-17 19:17:31.210185
+
+[367] Log opened at 2024-10-17 19:17:52.472233
+[367] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.367'
+[367] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[367] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[367] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[367] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[367] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[367] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[367] Log closed at 2024-10-17 19:17:55.727274
+
+[327] Log opened at 2024-10-17 19:18:36.896851
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 19:18:38.788213
+
+[327] Log opened at 2024-10-17 19:18:39.031946
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] Log opened at 2024-10-17 19:18:39.039437
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 19:18:39.729139
+
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-10-17 19:18:40.398179
+
+[354] Log opened at 2024-10-17 19:18:40.464545
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] Log opened at 2024-10-17 19:18:40.596455
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] Log opened at 2024-10-17 19:18:40.612826
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 19:18:41.670107
+
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-10-17 19:18:42.462220
+
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-10-17 19:18:42.857655
+
+[352] Log opened at 2024-10-17 19:19:02.865233
+[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352'
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] Log closed at 2024-10-17 19:19:04.921034
+
+[352] Log opened at 2024-10-17 19:19:05.129159
+[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352'
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] Log opened at 2024-10-17 19:19:05.135430
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] Log closed at 2024-10-17 19:19:05.792997
+
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 19:19:06.519189
+
+[353] Log opened at 2024-10-17 19:19:06.578251
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] Log opened at 2024-10-17 19:19:06.709451
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[366] Log opened at 2024-10-17 19:19:06.710181
+[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366'
+[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-10-17 19:19:07.803819
+
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 19:19:08.642552
+
+[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[366] Log closed at 2024-10-17 19:19:09.022400
+
+[362] Log opened at 2024-10-17 19:19:12.075771
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-10-17 19:19:13.356453
+
+[366] Log opened at 2024-10-17 19:19:13.365975
+[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366'
+[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log opened at 2024-10-17 19:19:13.951156
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[367] Log opened at 2024-10-17 19:19:14.145647
+[367] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.367'
+[367] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log opened at 2024-10-17 19:19:14.235891
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] Log opened at 2024-10-17 19:19:14.319942
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[367] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log opened at 2024-10-17 19:19:14.486547
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[366] Log closed at 2024-10-17 19:19:14.541295
+
+[363] Log opened at 2024-10-17 19:19:14.625133
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] Log opened at 2024-10-17 19:19:15.122299
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-10-17 19:19:15.197636
+
+[367] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] Log opened at 2024-10-17 19:19:15.350834
+[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352'
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[367] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[367] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] Log opened at 2024-10-17 19:19:15.528125
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[367] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[366] Log opened at 2024-10-17 19:19:15.611634
+[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366'
+[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[367] Log closed at 2024-10-17 19:19:15.613191
+
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-10-17 19:19:16.025482
+
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 19:19:16.418261
+
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] Log closed at 2024-10-17 19:19:16.817592
+
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-10-17 19:19:17.219471
+
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 19:19:17.627274
+
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] Log closed at 2024-10-17 19:19:18.063002
+
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-10-17 19:19:18.459292
+
+[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[366] Log closed at 2024-10-17 19:19:18.868609
+
+[369] Log opened at 2024-10-17 19:19:24.989774
+[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369'
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] Log closed at 2024-10-17 19:19:26.155540
+
+[370] Log opened at 2024-10-17 19:19:46.084840
+[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370'
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] Log closed at 2024-10-17 19:19:49.314275
+
+[354] Log opened at 2024-10-17 19:19:57.801175
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-10-17 19:20:01.303279
+
+[327] Log opened at 2024-10-17 19:20:06.527860
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] Log opened at 2024-10-17 19:20:09.988439
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 19:20:10.036961
+
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log opened at 2024-10-17 19:20:11.721538
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 19:20:13.063851
+
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-10-17 19:20:15.719665
+
+[363] Log opened at 2024-10-17 19:20:19.937678
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-10-17 19:20:23.307556
+
+[353] Log opened at 2024-10-17 19:20:59.863931
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- run -i 11
+[353] [Step Debug] ->
+
+[353] [Step Debug] ->
+
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- stack_get -i 12
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- property_get -i 13 -n "$lineas[0]" -d 0 -c 0
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- context_names -i 14 -d 0
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- context_get -i 15 -d 0 -c 0
+[353] [Step Debug] ->
+
+[352] Log opened at 2024-10-17 19:21:01.626921
+[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352'
+[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[352] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- run -i 11
+[353] [Step Debug] <- property_get -i 16 -n "$data" -d 0 -c 0
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- property_get -i 17 -n "$lineas[0]" -d 0 -c 0
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- property_get -i 18 -n "$lineas[0]" -d 0 -c 0
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- context_names -i 19 -d 0
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- property_get -i 20 -n "$data['excluirRotativa']" -d 0 -c 0
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- context_get -i 21 -d 0 -c 0
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 315
+[353] [Step Debug] ->
+
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- run -i 23
+[353] [Step Debug] ->
+
+[353] Log closed at 2024-10-17 19:21:58.782019
+
+[352] [Step Debug] ->
+
+[352] [Step Debug] ->
+
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 315
+[352] [Step Debug] ->
+
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- stack_get -i 13
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- property_get -i 14 -n "$lineas[0]" -d 0 -c 0
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- property_get -i 15 -n "$data['excluirRotativa']" -d 0 -c 0
+[352] [Step Debug] ->
+
+[362] Log opened at 2024-10-17 19:21:59.290229
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 315
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- run -i 12
+[352] [Step Debug] <- context_names -i 16 -d 0
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- context_get -i 17 -d 0 -c 0
+[352] [Step Debug] ->
+
+[352] [Step Debug] <- run -i 18
+[352] [Step Debug] ->
+
+[352] Log closed at 2024-10-17 19:22:05.835014
+
+[362] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- stack_get -i 13
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- property_get -i 14 -n "$lineas[0]" -d 0 -c 0
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- property_get -i 15 -n "$data['excluirRotativa']" -d 0 -c 0
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- context_names -i 16 -d 0
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- context_get -i 17 -d 0 -c 0
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- property_get -i 18 -n "$excluirRotativa" -d 0 -c 0
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_remove -i 19 -d 3620001
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- run -i 20
+[362] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- stack_get -i 21
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- property_get -i 22 -n "$lineas[0]" -d 0 -c 0
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- property_get -i 23 -n "$data['excluirRotativa']" -d 0 -c 0
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- context_names -i 24 -d 0
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- context_get -i 25 -d 0 -c 0
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- run -i 26
+[362] [Step Debug] ->
+
+[362] Log closed at 2024-10-17 19:22:36.588541
+
+[362] Log opened at 2024-10-17 19:22:39.021472
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- run -i 11
+[362] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- stack_get -i 12
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- property_get -i 13 -n "$lineas[0]" -d 0 -c 0
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- property_get -i 14 -n "$data['excluirRotativa']" -d 0 -c 0
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- context_names -i 15 -d 0
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- context_get -i 16 -d 0 -c 0
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- run -i 17
+[362] [Step Debug] ->
+
+[362] Log closed at 2024-10-17 19:22:51.140958
+
+[366] Log opened at 2024-10-17 19:23:04.462997
+[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366'
+[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[366] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 315
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- run -i 12
+[366] [Step Debug] ->
+
+[366] [Step Debug] ->
+
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- stack_get -i 13
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- stack_get -i 14
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- property_get -i 15 -n "$lineas[0]" -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- property_get -i 16 -n "$data['excluirRotativa']" -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- context_names -i 17 -d 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- context_get -i 18 -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- step_over -i 19
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- stack_get -i 20
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- property_get -i 21 -n "$lineas[0]" -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- property_get -i 22 -n "$data['excluirRotativa']" -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- context_names -i 23 -d 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- context_get -i 24 -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- run -i 25
+[366] [Step Debug] ->
+
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- stack_get -i 26
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- property_get -i 27 -n "$lineas[0]" -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- property_get -i 28 -n "$data['excluirRotativa']" -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- context_names -i 29 -d 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- context_get -i 30 -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- run -i 31
+[366] [Step Debug] ->
+
+[366] Log closed at 2024-10-17 19:23:37.043115
+
+[366] Log opened at 2024-10-17 19:23:39.613608
+[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366'
+[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[366] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 315
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- run -i 12
+[366] [Step Debug] ->
+
+[366] [Step Debug] ->
+
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- stack_get -i 13
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- stack_get -i 14
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- property_get -i 15 -n "$lineas[0]" -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- property_get -i 16 -n "$data['excluirRotativa']" -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- context_names -i 17 -d 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- context_get -i 18 -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_remove -i 19 -d 3660007
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_remove -i 20 -d 3660008
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 316
+[366] [Step Debug] ->
+
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 925
+[366] [Step Debug] ->
+
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1307
+[366] [Step Debug] ->
+
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- run -i 24
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- stack_get -i 25
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- stack_get -i 26
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- property_get -i 27 -n "$lineas[0]" -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- property_get -i 28 -n "$data['excluirRotativa']" -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- context_names -i 29 -d 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- context_get -i 30 -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- run -i 31
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- stack_get -i 32
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- property_get -i 33 -n "$lineas[0]" -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- property_get -i 34 -n "$data['excluirRotativa']" -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- context_names -i 35 -d 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- context_get -i 36 -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- property_get -i 37 -n "$datos_entrada" -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- property_get -i 38 -n "$datos_entrada[\"interior\"]" -p 0 -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_remove -i 39 -d 3660015
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- run -i 40
+[366] [Step Debug] ->
+
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- stack_get -i 41
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- property_get -i 42 -n "$lineas[0]" -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- property_get -i 43 -n "$data['excluirRotativa']" -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- context_names -i 44 -d 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- context_get -i 45 -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- run -i 46
+[366] [Step Debug] ->
+
+[366] Log closed at 2024-10-17 19:25:30.426942
+
+[366] Log opened at 2024-10-17 19:25:32.729416
+[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366'
+[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[366] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 316
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 925
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- run -i 12
+[366] [Step Debug] ->
+
+[366] [Step Debug] ->
+
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- stack_get -i 13
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- property_get -i 14 -n "$lineas[0]" -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- property_get -i 15 -n "$data['excluirRotativa']" -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- context_names -i 16 -d 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- context_get -i 17 -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- run -i 18
+[366] [Step Debug] ->
+
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- stack_get -i 19
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- property_get -i 20 -n "$lineas[0]" -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- property_get -i 21 -n "$data['excluirRotativa']" -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- context_names -i 22 -d 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- context_get -i 23 -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- run -i 24
+[366] [Step Debug] ->
+
+[366] Log closed at 2024-10-17 19:25:54.936854
+
+[366] Log opened at 2024-10-17 19:25:57.389062
+[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366'
+[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[366] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 316
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 925
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- run -i 12
+[366] [Step Debug] ->
+
+[366] [Step Debug] ->
+
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- stack_get -i 13
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- property_get -i 14 -n "$lineas[0]" -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- property_get -i 15 -n "$data['excluirRotativa']" -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- context_names -i 16 -d 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- context_get -i 17 -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_remove -i 18 -d 3660022
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- run -i 19
+[366] [Step Debug] ->
+
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- stack_get -i 20
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- property_get -i 21 -n "$lineas[0]" -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- property_get -i 22 -n "$data['excluirRotativa']" -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- context_names -i 23 -d 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- context_get -i 24 -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- step_over -i 25
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- stack_get -i 26
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- property_get -i 27 -n "$lineas[0]" -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- property_get -i 28 -n "$data['excluirRotativa']" -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- context_names -i 29 -d 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- context_get -i 30 -d 0 -c 0
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- run -i 31
+[366] [Step Debug] ->
+
+[366] [Step Debug] <- breakpoint_remove -i 32 -d 3660024
+[366] [Step Debug] ->
+
+[366] Log closed at 2024-10-17 19:26:08.687762
+
+[370] Log opened at 2024-10-17 19:26:56.420926
+[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370'
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] Log closed at 2024-10-17 19:26:58.335084
+
+[370] Log opened at 2024-10-17 19:26:58.662937
+[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370'
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] Log opened at 2024-10-17 19:26:58.752097
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] Log closed at 2024-10-17 19:26:59.354729
+
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 19:27:00.158068
+
+[327] Log opened at 2024-10-17 19:27:00.244627
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] Log opened at 2024-10-17 19:27:00.407119
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] Log opened at 2024-10-17 19:27:00.434730
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-10-17 19:27:01.514997
+
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 19:27:02.273214
+
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-10-17 19:27:02.644083
+
+[362] Log opened at 2024-10-17 19:27:10.020631
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-10-17 19:27:11.303004
+
+[366] Log opened at 2024-10-17 19:27:11.313361
+[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366'
+[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] Log opened at 2024-10-17 19:27:11.390306
+[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369'
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] Log opened at 2024-10-17 19:27:11.542039
+[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371'
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log opened at 2024-10-17 19:27:11.604322
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[366] Log closed at 2024-10-17 19:27:12.534511
+
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] Log closed at 2024-10-17 19:27:12.935681
+
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] Log closed at 2024-10-17 19:27:13.361216
+
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 19:27:13.778469
+
+[327] Log opened at 2024-10-17 19:27:18.453882
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 19:27:19.672543
+
+[370] Log opened at 2024-10-17 19:27:44.765552
+[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370'
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] Log closed at 2024-10-17 19:27:48.990997
+
+[320] Log opened at 2024-10-17 19:28:32.573471
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 19:28:34.525789
+
+[320] Log opened at 2024-10-17 19:28:34.784182
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] Log opened at 2024-10-17 19:28:34.802037
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 19:28:35.550130
+
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 19:28:36.282138
+
+[353] Log opened at 2024-10-17 19:28:36.348607
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] Log opened at 2024-10-17 19:28:36.385259
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] Log opened at 2024-10-17 19:28:36.397790
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-10-17 19:28:37.615596
+
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 19:28:38.392403
+
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-10-17 19:28:38.757991
+
+[369] Log opened at 2024-10-17 19:28:51.038432
+[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369'
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] Log closed at 2024-10-17 19:28:52.282199
+
+[369] Log opened at 2024-10-17 19:28:54.477694
+[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369'
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] Log opened at 2024-10-17 19:28:54.584542
+[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371'
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] Log opened at 2024-10-17 19:28:54.658183
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] Log opened at 2024-10-17 19:28:54.727219
+[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370'
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log opened at 2024-10-17 19:28:54.862484
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log opened at 2024-10-17 19:28:54.984820
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] Log opened at 2024-10-17 19:28:55.045463
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] Log closed at 2024-10-17 19:28:55.723093
+
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] Log closed at 2024-10-17 19:28:56.130516
+
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 19:28:56.544508
+
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] Log closed at 2024-10-17 19:28:56.953014
+
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 19:28:57.361688
+
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 19:28:57.754870
+
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-10-17 19:28:58.165074
+
+[363] Log opened at 2024-10-17 19:29:12.456077
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-10-17 19:29:13.648822
+
+[354] Log opened at 2024-10-17 19:29:28.677781
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-10-17 19:29:32.562878
+
+[372] Log opened at 2024-10-17 19:29:38.245536
+[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372'
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] Log closed at 2024-10-17 19:29:39.552959
+
+[369] Log opened at 2024-10-17 19:29:45.650731
+[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369'
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] Log closed at 2024-10-17 19:29:46.879288
+
+[369] Log opened at 2024-10-17 19:29:51.174515
+[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369'
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] Log closed at 2024-10-17 19:29:54.473849
+
+[369] Log opened at 2024-10-17 19:29:54.563012
+[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369'
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] Log closed at 2024-10-17 19:29:55.517289
+
+[369] Log opened at 2024-10-17 19:29:55.804617
+[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369'
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] Log closed at 2024-10-17 19:29:56.892637
+
+[371] Log opened at 2024-10-17 19:30:33.752147
+[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371'
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] Log closed at 2024-10-17 19:30:35.641281
+
+[371] Log opened at 2024-10-17 19:30:35.879596
+[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371'
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log opened at 2024-10-17 19:30:36.426780
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] Log closed at 2024-10-17 19:30:37.191613
+
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] Log opened at 2024-10-17 19:30:37.310102
+[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370'
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] Log opened at 2024-10-17 19:30:37.347514
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] Log opened at 2024-10-17 19:30:37.348297
+[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371'
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 19:30:37.432418
+
+[327] Log opened at 2024-10-17 19:30:37.461658
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 19:30:38.534653
+
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 19:30:38.551744
+
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] Log closed at 2024-10-17 19:30:39.275106
+
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] Log closed at 2024-10-17 19:30:39.632421
+
+[320] Log opened at 2024-10-17 19:32:38.846103
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 19:32:40.089869
+
+[320] Log opened at 2024-10-17 19:32:42.353958
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] Log opened at 2024-10-17 19:32:42.449622
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] Log opened at 2024-10-17 19:32:42.524257
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log opened at 2024-10-17 19:32:42.634258
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] Log opened at 2024-10-17 19:32:42.748959
+[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372'
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 19:32:43.654983
+
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-10-17 19:32:44.067469
+
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-10-17 19:32:44.527202
+
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-10-17 19:32:44.927577
+
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] Log closed at 2024-10-17 19:32:45.332890
+
+[369] Log opened at 2024-10-17 19:32:50.835101
+[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369'
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] Log opened at 2024-10-17 19:32:50.923045
+[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370'
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] Log closed at 2024-10-17 19:32:51.995355
+
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] Log closed at 2024-10-17 19:32:52.402333
+
+[353] Log opened at 2024-10-17 19:33:09.524731
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 19:33:14.354940
+
+[353] Log opened at 2024-10-17 19:33:18.154047
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 19:33:19.372219
+
+[353] Log opened at 2024-10-17 19:33:24.245366
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 19:33:25.535787
+
+[327] Log opened at 2024-10-17 19:33:50.994658
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 19:33:55.100200
+
+[371] Log opened at 2024-10-17 19:34:53.492588
+[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371'
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] Log closed at 2024-10-17 19:34:55.486639
+
+[371] Log opened at 2024-10-17 19:34:55.705881
+[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371'
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] Log closed at 2024-10-17 19:34:56.655784
+
+[371] Log opened at 2024-10-17 19:34:56.911962
+[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371'
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] Log closed at 2024-10-17 19:34:57.865135
+
+[371] Log opened at 2024-10-17 19:34:59.679449
+[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371'
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] Log closed at 2024-10-17 19:35:01.773697
+
+[371] Log opened at 2024-10-17 19:35:01.967898
+[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371'
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] Log closed at 2024-10-17 19:35:03.405681
+
+[320] Log opened at 2024-10-17 19:35:03.461705
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] Log opened at 2024-10-17 19:35:03.552285
+[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371'
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] Log opened at 2024-10-17 19:35:03.558220
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] Log closed at 2024-10-17 19:35:04.728882
+
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 19:35:05.526664
+
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-10-17 19:35:05.905222
+
+[371] Log opened at 2024-10-17 19:35:06.554022
+[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371'
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] Log opened at 2024-10-17 19:35:06.630590
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] Log closed at 2024-10-17 19:35:07.814409
+
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-10-17 19:35:08.312177
+
+[362] Log opened at 2024-10-17 19:35:09.797532
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] Log opened at 2024-10-17 19:35:09.865191
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] Log opened at 2024-10-17 19:35:09.899353
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] Log opened at 2024-10-17 19:35:09.987816
+[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372'
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] Log opened at 2024-10-17 19:35:10.108197
+[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369'
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-10-17 19:35:11.029779
+
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-10-17 19:35:11.421458
+
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-10-17 19:35:11.836080
+
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] Log closed at 2024-10-17 19:35:12.242601
+
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] Log closed at 2024-10-17 19:35:12.658295
+
+[370] Log opened at 2024-10-17 19:35:18.278261
+[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370'
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] Log closed at 2024-10-17 19:35:19.463189
+
+[353] Log opened at 2024-10-17 19:35:36.017836
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 19:35:40.965474
+
+[353] Log opened at 2024-10-17 19:35:43.625002
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 19:35:44.856727
+
+[327] Log opened at 2024-10-17 19:35:50.998017
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 19:35:52.214132
+
+[327] Log opened at 2024-10-17 19:35:56.336962
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 19:36:01.490982
+
+[320] Log opened at 2024-10-17 19:36:07.038116
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 19:36:10.249016
+
+[320] Log opened at 2024-10-17 19:36:10.545277
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] Log opened at 2024-10-17 19:36:10.550158
+[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371'
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 19:36:11.235490
+
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] Log closed at 2024-10-17 19:36:11.987621
+
+[371] Log opened at 2024-10-17 19:36:12.102297
+[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371'
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] Log opened at 2024-10-17 19:36:12.239795
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] Log opened at 2024-10-17 19:36:12.240447
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-10-17 19:36:13.453437
+
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] Log closed at 2024-10-17 19:36:14.233099
+
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-10-17 19:36:14.600853
+
+[362] Log opened at 2024-10-17 19:36:14.777684
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-10-17 19:36:16.023561
+
+[354] Log opened at 2024-10-17 19:41:10.565028
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- run -i 11
+[354] [Step Debug] ->
+
+[354] [Step Debug] ->
+
+[354] Log closed at 2024-10-17 19:41:11.970497
+
+[354] Log opened at 2024-10-17 19:41:12.215986
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] ->
+
+[372] Log opened at 2024-10-17 19:41:12.217477
+[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372'
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[354] [Step Debug] ->
+
+[372] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[354] [Step Debug] ->
+
+[372] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[354] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[372] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[354] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[372] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[354] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[354] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[354] [Step Debug] ->
+
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22
+[354] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22
+[354] [Step Debug] ->
+
+[372] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22
+[354] [Step Debug] ->
+
+[372] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- run -i 12
+[354] [Step Debug] <- run -i 12
+[372] [Step Debug] ->
+
+[372] Log closed at 2024-10-17 19:41:12.442981
+
+[354] [Step Debug] ->
+
+[354] Log closed at 2024-10-17 19:41:13.094410
+
+[369] Log opened at 2024-10-17 19:41:13.166187
+[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369'
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[369] [Step Debug] ->
+
+[372] Log opened at 2024-10-17 19:41:13.258595
+[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372'
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] Log opened at 2024-10-17 19:41:13.260061
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] [Step Debug] ->
+
+[354] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[372] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[354] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[372] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[354] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[354] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[354] [Step Debug] ->
+
+[372] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- run -i 6
+[369] [Step Debug] <- run -i 11
+[372] [Step Debug] <- run -i 6
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[372] [Step Debug] ->
+
+[372] Log closed at 2024-10-17 19:41:13.889126
+
+[369] [Step Debug] ->
+
+[369] Log closed at 2024-10-17 19:41:14.255933
+
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[354] [Step Debug] ->
+
+[354] Log closed at 2024-10-17 19:41:14.408011
+
+[370] Log opened at 2024-10-17 19:41:21.274434
+[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370'
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[370] [Step Debug] ->
+
+[353] Log opened at 2024-10-17 19:41:21.347247
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- run -i 6
+[370] [Step Debug] <- run -i 11
+[370] [Step Debug] ->
+
+[370] Log closed at 2024-10-17 19:41:22.090993
+
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[353] [Step Debug] ->
+
+[353] Log closed at 2024-10-17 19:41:22.366253
+
+[327] Log opened at 2024-10-17 19:41:29.198000
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[327] [Step Debug] ->
+
+[371] Log opened at 2024-10-17 19:41:29.251590
+[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371'
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] ->
+
+[371] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[371] [Step Debug] ->
+
+[371] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[371] [Step Debug] ->
+
+[371] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[371] [Step Debug] ->
+
+[371] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[371] [Step Debug] ->
+
+[371] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[371] [Step Debug] ->
+
+[371] [Step Debug] <- run -i 6
+[327] [Step Debug] <- run -i 11
+[371] [Step Debug] ->
+
+[371] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[371] [Step Debug] ->
+
+[371] Log closed at 2024-10-17 19:41:29.927698
+
+[327] [Step Debug] ->
+
+[327] Log closed at 2024-10-17 19:41:30.158465
+
+[320] Log opened at 2024-10-17 19:41:52.943709
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- run -i 11
+[320] [Step Debug] ->
+
+[320] [Step Debug] ->
+
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- stack_get -i 12
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- property_get -i 13 -n "$lineas[0]" -d 0 -c 0
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- property_get -i 14 -n "$data['excluirRotativa']" -d 0 -c 0
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- context_names -i 15 -d 0
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- context_get -i 16 -d 0 -c 0
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- step_over -i 17
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- stack_get -i 18
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- stack_get -i 19
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- property_get -i 20 -n "$lineas[0]" -d 0 -c 0
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- property_get -i 21 -n "$data['excluirRotativa']" -d 0 -c 0
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- context_names -i 22 -d 0
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- context_get -i 23 -d 0 -c 0
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- step_over -i 24
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- stack_get -i 25
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- property_get -i 26 -n "$lineas[0]" -d 0 -c 0
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- property_get -i 27 -n "$data['excluirRotativa']" -d 0 -c 0
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- context_names -i 28 -d 0
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- context_get -i 29 -d 0 -c 0
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_remove -i 30 -d 3200134
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 52
+[320] [Step Debug] ->
+
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- run -i 32
+[320] [Step Debug] ->
+
+[320] Log closed at 2024-10-17 19:42:13.234335
+
+[363] Log opened at 2024-10-17 19:42:54.000739
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 31
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 52
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- run -i 12
+[363] [Step Debug] ->
+
+[363] [Step Debug] ->
+
+[363] [Step Debug] ->
+
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- stack_get -i 13
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- property_get -i 14 -n "$lineas[0]" -d 0 -c 0
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- property_get -i 15 -n "$data['excluirRotativa']" -d 0 -c 0
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- context_names -i 16 -d 0
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- context_get -i 17 -d 0 -c 0
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- property_get -i 18 -n "$plana" -d 0 -c 0
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- run -i 19
+[363] [Step Debug] ->
+
+[363] Log closed at 2024-10-17 19:43:40.638228
+
+[362] Log opened at 2024-10-17 19:44:09.899561
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 30
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 53
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- run -i 12
+[362] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- stack_get -i 13
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- property_get -i 14 -n "$lineas[0]" -d 0 -c 0
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- property_get -i 15 -n "$data['excluirRotativa']" -d 0 -c 0
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- context_names -i 16 -d 0
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- context_get -i 17 -d 0 -c 0
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- run -i 18
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- stack_get -i 19
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- property_get -i 20 -n "$lineas[0]" -d 0 -c 0
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- property_get -i 21 -n "$data['excluirRotativa']" -d 0 -c 0
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- context_names -i 22 -d 0
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- context_get -i 23 -d 0 -c 0
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- run -i 24
+[362] [Step Debug] ->
+
+[362] Log closed at 2024-10-17 19:44:17.542700
+
+[369] Log opened at 2024-10-17 19:44:28.943648
+[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369'
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 30
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- run -i 11
+[369] [Step Debug] ->
+
+[369] [Step Debug] ->
+
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- stack_get -i 12
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- property_get -i 13 -n "$lineas[0]" -d 0 -c 0
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- property_get -i 14 -n "$data['excluirRotativa']" -d 0 -c 0
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- context_names -i 15 -d 0
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- context_get -i 16 -d 0 -c 0
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- step_over -i 17
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- stack_get -i 18
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- property_get -i 19 -n "$lineas[0]" -d 0 -c 0
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- property_get -i 20 -n "$data['excluirRotativa']" -d 0 -c 0
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- context_names -i 21 -d 0
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- context_get -i 22 -d 0 -c 0
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- breakpoint_remove -i 23 -d 3690007
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- run -i 24
+[369] [Step Debug] ->
+
+[369] Log closed at 2024-10-17 19:44:41.274854
+
+[372] Log opened at 2024-10-17 19:44:50.546591
+[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372'
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- run -i 10
+[372] [Step Debug] ->
+
+[372] Log closed at 2024-10-17 19:44:51.361211
+
+[372] Log opened at 2024-10-17 19:44:55.005262
+[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372'
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- run -i 10
+[372] [Step Debug] ->
+
+[372] Log closed at 2024-10-17 19:44:55.695037
+
+[354] Log opened at 2024-10-17 19:45:01.402490
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- run -i 10
+[354] [Step Debug] ->
+
+[354] [Step Debug] ->
+
+[354] Log closed at 2024-10-17 19:45:04.591508
+
+[354] Log opened at 2024-10-17 19:45:04.652788
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- run -i 10
+[354] [Step Debug] ->
+
+[354] [Step Debug] ->
+
+[354] Log closed at 2024-10-17 19:45:07.130102
+
+[354] Log opened at 2024-10-17 19:45:07.372703
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[354] [Step Debug] ->
+
+[370] Log opened at 2024-10-17 19:45:07.378147
+[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370'
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[354] [Step Debug] ->
+
+[370] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[354] [Step Debug] ->
+
+[370] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[370] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[370] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[370] [Step Debug] ->
+
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[370] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[370] [Step Debug] ->
+
+[354] [Step Debug] ->
+
+[370] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[370] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[354] [Step Debug] ->
+
+[370] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[354] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[370] [Step Debug] ->
+
+[354] [Step Debug] ->
+
+[370] [Step Debug] <- run -i 10
+[354] [Step Debug] <- run -i 10
+[354] [Step Debug] ->
+
+[354] Log closed at 2024-10-17 19:45:07.558853
+
+[370] [Step Debug] ->
+
+[370] Log closed at 2024-10-17 19:45:08.293070
+
+[370] Log opened at 2024-10-17 19:45:08.352170
+[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370'
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- run -i 10
+[353] Log opened at 2024-10-17 19:45:08.509921
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] ->
+
+[327] Log opened at 2024-10-17 19:45:08.512516
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[353] [Step Debug] ->
+
+[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ->
+
+[353] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[353] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[327] [Step Debug] ->
+
+[353] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[353] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[353] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[353] [Step Debug] ->
+
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[327] [Step Debug] ->
+
+[353] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[327] [Step Debug] ->
+
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[327] [Step Debug] ->
+
+[353] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[327] [Step Debug] ->
+
+[353] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- run -i 10
+[327] [Step Debug] <- run -i 10
+[353] [Step Debug] ->
+
+[353] Log closed at 2024-10-17 19:45:09.200476
+
+[370] [Step Debug] ->
+
+[370] Log closed at 2024-10-17 19:45:09.566516
+
+[327] [Step Debug] ->
+
+[327] Log closed at 2024-10-17 19:45:09.726190
+
+[353] Log opened at 2024-10-17 19:45:09.773942
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- run -i 10
+[353] [Step Debug] ->
+
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- stack_get -i 11
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- property_get -i 12 -n "$lineas[0]" -d 0 -c 0
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- property_get -i 13 -n "$data['excluirRotativa']" -d 0 -c 0
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- context_names -i 14 -d 0
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- context_get -i 15 -d 0 -c 0
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- breakpoint_remove -i 16 -d 3530011
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- run -i 17
+[353] [Step Debug] ->
+
+[353] Log closed at 2024-10-17 19:45:17.110319
+
+[363] Log opened at 2024-10-17 19:46:03.004175
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2240
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- run -i 10
+[363] [Step Debug] ->
+
+[363] [Step Debug] ->
+
+[363] Log closed at 2024-10-17 19:46:05.611520
+
+[363] Log opened at 2024-10-17 19:46:05.776756
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2240
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[363] [Step Debug] ->
+
+[362] Log opened at 2024-10-17 19:46:05.801204
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[362] [Step Debug] ->
+
+[363] [Step Debug] <- run -i 10
+[362] [Step Debug] <- run -i 6
+[363] [Step Debug] ->
+
+[363] Log closed at 2024-10-17 19:46:05.981365
+
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2240
+[362] [Step Debug] ->
+
+[362] Log closed at 2024-10-17 19:46:06.605094
+
+[362] Log opened at 2024-10-17 19:46:06.716124
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2240
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[362] [Step Debug] ->
+
+[363] Log opened at 2024-10-17 19:46:06.816557
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[369] Log opened at 2024-10-17 19:46:06.816484
+[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369'
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] ->
+
+[363] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] ->
+
+[369] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[369] [Step Debug] ->
+
+[363] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[363] [Step Debug] ->
+
+[369] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[363] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[369] [Step Debug] ->
+
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[363] [Step Debug] ->
+
+[369] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[369] [Step Debug] ->
+
+[363] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[369] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[369] [Step Debug] ->
+
+[363] [Step Debug] ->
+
+[369] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[363] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[363] [Step Debug] ->
+
+[369] [Step Debug] ->
+
+[363] [Step Debug] <- run -i 6
+[369] [Step Debug] <- run -i 6
+[362] [Step Debug] <- run -i 10
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2240
+[369] [Step Debug] ->
+
+[369] Log closed at 2024-10-17 19:46:07.420817
+
+[362] [Step Debug] ->
+
+[362] Log closed at 2024-10-17 19:46:07.779674
+
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2240
+[363] [Step Debug] ->
+
+[363] Log closed at 2024-10-17 19:46:07.964569
+
+[369] Log opened at 2024-10-17 19:46:08.014258
+[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369'
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2240
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- run -i 10
+[369] [Step Debug] ->
+
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- stack_get -i 11
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- property_get -i 12 -n "$lineas[0]" -d 0 -c 0
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- property_get -i 13 -n "$data['excluirRotativa']" -d 0 -c 0
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- context_names -i 14 -d 0
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- context_get -i 15 -d 0 -c 0
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- property_get -i 16 -n "$lineas[0]" -d 0 -c 0
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- property_get -i 17 -n "$lineas[0]->attributes" -p 0 -d 0 -c 0
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- property_get -i 18 -n "$linea[0]->rotativa_pag_color" -d 0 -c 0
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- context_names -i 19 -d 0
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- property_get -i 20 -n "$data['excluirRotativa']" -d 0 -c 0
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- context_get -i 21 -d 0 -c 0
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- property_get -i 22 -n "$lineas[0]" -d 0 -c 0
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- property_get -i 23 -n "$lineas[0]->attributes" -p 0 -d 0 -c 0
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- step_over -i 24
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- stack_get -i 25
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- stack_get -i 26
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- property_get -i 27 -n "$linea[0]->rotativa_pag_color" -d 0 -c 0
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- property_get -i 28 -n "$data['excluirRotativa']" -d 0 -c 0
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- context_names -i 29 -d 0
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- context_get -i 30 -d 0 -c 0
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- property_get -i 31 -n "$lineas[0]" -d 0 -c 0
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- property_get -i 32 -n "$lineas[0]->attributes" -p 0 -d 0 -c 0
+[369] [Step Debug] ->
+
+[369] [Step Debug] <- run -i 33
+[369] [Step Debug] ->
+
+[369] Log closed at 2024-10-17 19:48:57.978238
+
+[372] Log opened at 2024-10-17 19:50:47.401563
+[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372'
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2240
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- run -i 11
+[372] [Step Debug] ->
+
+[372] [Step Debug] ->
+
+[372] [Step Debug] ->
+
+[372] Log closed at 2024-10-17 19:50:50.177780
+
+[372] Log opened at 2024-10-17 19:50:50.344873
+[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372'
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2240
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[372] [Step Debug] ->
+
+[370] Log opened at 2024-10-17 19:50:50.369120
+[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370'
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[372] [Step Debug] ->
+
+[372] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[372] [Step Debug] ->
+
+[370] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[370] [Step Debug] ->
+
+[372] [Step Debug] <- run -i 11
+[370] [Step Debug] <- run -i 6
+[372] [Step Debug] ->
+
+[372] Log closed at 2024-10-17 19:50:50.524650
+
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[370] [Step Debug] ->
+
+[370] Log closed at 2024-10-17 19:50:51.120561
+
+[370] Log opened at 2024-10-17 19:50:51.243499
+[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370'
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2240
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[370] [Step Debug] ->
+
+[370] [Step Debug] <- run -i 11
+[320] Log opened at 2024-10-17 19:50:51.372120
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] Log opened at 2024-10-17 19:50:51.372820
+[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371'
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] ->
+
+[371] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[371] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[320] [Step Debug] ->
+
+[371] [Step Debug] ->
+
+[371] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[320] [Step Debug] ->
+
+[371] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[371] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[320] [Step Debug] ->
+
+[371] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[320] [Step Debug] ->
+
+[371] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[371] [Step Debug] ->
+
+[371] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[371] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[371] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[320] [Step Debug] ->
+
+[371] [Step Debug] ->
+
+[371] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2240
+[320] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2240
+[320] [Step Debug] ->
+
+[371] [Step Debug] ->
+
+[371] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[320] [Step Debug] ->
+
+[371] [Step Debug] ->
+
+[371] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[371] [Step Debug] ->
+
+[371] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[371] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[320] [Step Debug] ->
+
+[371] [Step Debug] <- run -i 11
+[320] [Step Debug] <- run -i 11
+[320] [Step Debug] ->
+
+[320] Log closed at 2024-10-17 19:50:52.019181
+
+[370] [Step Debug] ->
+
+[370] Log closed at 2024-10-17 19:50:52.434210
+
+[371] [Step Debug] ->
+
+[371] Log closed at 2024-10-17 19:50:52.593343
+
+[320] Log opened at 2024-10-17 19:50:52.643027
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2240
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- run -i 11
+[320] [Step Debug] ->
+
+[320] [Step Debug] ->
+
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- stack_get -i 12
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- property_get -i 13 -n "$linea[0]->rotativa_pag_color" -d 0 -c 0
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- property_get -i 14 -n "$data['excluirRotativa']" -d 0 -c 0
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- context_names -i 15 -d 0
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- context_get -i 16 -d 0 -c 0
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- breakpoint_remove -i 17 -d 3200145
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- run -i 18
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- stack_get -i 19
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- stack_get -i 20
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- property_get -i 21 -n "$linea[0]->rotativa_pag_color" -d 0 -c 0
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- property_get -i 22 -n "$data['excluirRotativa']" -d 0 -c 0
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- context_names -i 23 -d 0
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- context_get -i 24 -d 0 -c 0
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- property_get -i 25 -n "$data[\"datosGenerales\"]" -p 0 -d 0 -c 0
+[320] [Step Debug] ->
+
+[320] [Step Debug] <- run -i 26
+[320] [Step Debug] ->
+
+[320] Log closed at 2024-10-17 19:51:11.841087
+
+[354] Log opened at 2024-10-17 19:51:17.303011
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- run -i 10
+[354] [Step Debug] ->
+
+[354] [Step Debug] ->
+
+[354] Log closed at 2024-10-17 19:51:20.064336
+
+[354] Log opened at 2024-10-17 19:51:20.302219
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[354] [Step Debug] ->
+
+[327] Log opened at 2024-10-17 19:51:20.309915
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[354] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[354] [Step Debug] ->
+
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[354] [Step Debug] ->
+
+[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[327] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[354] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 6 -n extended_properties -v 1
+[327] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[354] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[327] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[354] [Step Debug] ->
+
+[354] [Step Debug] <- run -i 10
+[327] [Step Debug] <- run -i 10
+[354] [Step Debug] ->
+
+[354] Log closed at 2024-10-17 19:51:20.505337
+
+[327] [Step Debug] ->
+
+[327] Log closed at 2024-10-17 19:51:21.072924
+
+[327] Log opened at 2024-10-17 19:51:21.168470
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[327] [Step Debug] ->
+
+[327] [Step Debug] <- run -i 10
+[353] Log opened at 2024-10-17 19:51:21.291825
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] Log opened at 2024-10-17 19:51:21.291819
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] ->
+
+[362] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[362] [Step Debug] ->
+
+[353] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[362] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[353] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[353] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[362] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[353] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[353] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[362] [Step Debug] ->
+
+[353] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[353] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[362] [Step Debug] ->
+
+[353] [Step Debug] ->
+
+[353] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[362] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[353] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[362] [Step Debug] ->
+
+[353] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[353] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[353] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[353] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[353] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[362] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[353] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[353] [Step Debug] <- run -i 10
+[362] [Step Debug] <- run -i 10
+[362] [Step Debug] ->
+
+[362] Log closed at 2024-10-17 19:51:22.013500
+
+[327] [Step Debug] ->
+
+[327] Log closed at 2024-10-17 19:51:22.411325
+
+[353] [Step Debug] ->
+
+[353] Log closed at 2024-10-17 19:51:22.564316
+
+[362] Log opened at 2024-10-17 19:51:22.613395
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- run -i 10
+[362] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- stack_get -i 11
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- property_get -i 12 -n "$linea[0]->rotativa_pag_color" -d 0 -c 0
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- property_get -i 13 -n "$data['excluirRotativa']" -d 0 -c 0
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- context_names -i 14 -d 0
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- context_get -i 15 -d 0 -c 0
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- property_get -i 16 -n "$data[\"datosGenerales\"]" -p 0 -d 0 -c 0
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- run -i 17
+[362] [Step Debug] ->
+
+[362] Log closed at 2024-10-17 19:51:31.823910
+
+[372] Log opened at 2024-10-17 19:58:50.433202
+[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372'
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] Log closed at 2024-10-17 19:58:53.363072
+
+[372] Log opened at 2024-10-17 19:58:53.592681
+[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372'
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] Log opened at 2024-10-17 19:58:53.617649
+[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371'
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] Log closed at 2024-10-17 19:58:54.275120
+
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] Log closed at 2024-10-17 19:58:54.943424
+
+[371] Log opened at 2024-10-17 19:58:55.004623
+[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371'
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] Log opened at 2024-10-17 19:58:55.144980
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] Log opened at 2024-10-17 19:58:55.147442
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 19:58:56.305562
+
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] Log closed at 2024-10-17 19:58:57.060549
+
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 19:58:57.429150
+
+[320] Log opened at 2024-10-17 19:58:57.473137
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 19:58:58.787536
+
+[369] Log opened at 2024-10-17 19:59:18.560752
+[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369'
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] Log closed at 2024-10-17 19:59:21.665335
+
+[369] Log opened at 2024-10-17 19:59:21.918437
+[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369'
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] Log opened at 2024-10-17 19:59:21.926782
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] Log closed at 2024-10-17 19:59:22.601179
+
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-10-17 19:59:23.315766
+
+[354] Log opened at 2024-10-17 19:59:23.373138
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] Log opened at 2024-10-17 19:59:23.525314
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] Log opened at 2024-10-17 19:59:23.527792
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 19:59:24.657317
+
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-10-17 19:59:25.429997
+
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-10-17 19:59:25.793001
+
+[353] Log opened at 2024-10-17 19:59:25.847919
+[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353'
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[353] Log closed at 2024-10-17 19:59:27.132163
+
+[371] Log opened at 2024-10-17 20:00:10.076994
+[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371'
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] Log closed at 2024-10-17 20:00:13.159745
+
+[371] Log opened at 2024-10-17 20:00:13.408727
+[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371'
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] Log opened at 2024-10-17 20:00:13.416545
+[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372'
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] Log closed at 2024-10-17 20:00:14.092618
+
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] Log closed at 2024-10-17 20:00:14.736124
+
+[372] Log opened at 2024-10-17 20:00:14.803815
+[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372'
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] Log opened at 2024-10-17 20:00:14.934076
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] Log opened at 2024-10-17 20:00:14.933968
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 20:00:16.130586
+
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] Log closed at 2024-10-17 20:00:16.870157
+
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 20:00:17.240093
+
+[327] Log opened at 2024-10-17 20:00:17.285475
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 20:00:18.591934
+
+[354] Log opened at 2024-10-17 20:00:59.273721
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-10-17 20:01:02.020236
+
+[354] Log opened at 2024-10-17 20:01:02.207466
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] Log opened at 2024-10-17 20:01:02.212366
+[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370'
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-10-17 20:01:02.876649
+
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] Log closed at 2024-10-17 20:01:03.439396
+
+[354] Log opened at 2024-10-17 20:01:03.659434
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] Log opened at 2024-10-17 20:01:03.767518
+[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370'
+[369] Log opened at 2024-10-17 20:01:03.767605
+[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369'
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] Log closed at 2024-10-17 20:01:04.958331
+
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-10-17 20:01:05.735104
+
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] Log closed at 2024-10-17 20:01:06.104695
+
+[370] Log opened at 2024-10-17 20:01:06.158730
+[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370'
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] Log closed at 2024-10-17 20:01:07.475053
+
+[371] Log opened at 2024-10-17 20:01:54.049485
+[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371'
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] Log closed at 2024-10-17 20:01:56.972606
+
+[371] Log opened at 2024-10-17 20:01:57.281530
+[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371'
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] Log opened at 2024-10-17 20:01:57.285073
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] Log closed at 2024-10-17 20:01:57.956915
+
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-10-17 20:01:58.526128
+
+[371] Log opened at 2024-10-17 20:01:58.638692
+[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371'
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log opened at 2024-10-17 20:01:58.869218
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] Log opened at 2024-10-17 20:01:58.900208
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-10-17 20:01:59.987122
+
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] Log closed at 2024-10-17 20:02:00.770727
+
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 20:02:01.135896
+
+[363] Log opened at 2024-10-17 20:02:01.182741
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-10-17 20:02:02.426292
+
+[362] Log opened at 2024-10-17 20:02:07.844831
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-10-17 20:02:10.736456
+
+[362] Log opened at 2024-10-17 20:02:10.995574
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] Log opened at 2024-10-17 20:02:11.081612
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-10-17 20:02:11.677078
+
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 20:02:12.417610
+
+[354] Log opened at 2024-10-17 20:02:12.585474
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] Log opened at 2024-10-17 20:02:12.698625
+[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370'
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] Log opened at 2024-10-17 20:02:12.728040
+[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369'
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] Log closed at 2024-10-17 20:02:13.887000
+
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-10-17 20:02:14.649210
+
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] Log closed at 2024-10-17 20:02:15.016793
+
+[370] Log opened at 2024-10-17 20:02:15.066935
+[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370'
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] Log closed at 2024-10-17 20:02:16.280024
+
+[320] Log opened at 2024-10-17 20:04:29.939037
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 20:04:32.798749
+
+[320] Log opened at 2024-10-17 20:04:33.072297
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] Log opened at 2024-10-17 20:04:33.089719
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 20:04:33.769136
+
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-10-17 20:04:34.511510
+
+[320] Log opened at 2024-10-17 20:04:34.641119
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] Log opened at 2024-10-17 20:04:34.924724
+[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372'
+[363] Log opened at 2024-10-17 20:04:34.924717
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-10-17 20:04:36.270653
+
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 20:04:37.031978
+
+[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] Log closed at 2024-10-17 20:04:37.404474
+
+[363] Log opened at 2024-10-17 20:04:37.519455
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-10-17 20:04:38.840058
+
+[354] Log opened at 2024-10-17 20:05:32.941901
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-10-17 20:05:35.866444
+
+[354] Log opened at 2024-10-17 20:05:36.167303
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] Log opened at 2024-10-17 20:05:36.176811
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-10-17 20:05:36.840064
+
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 20:05:37.420398
+
+[354] Log opened at 2024-10-17 20:05:37.662957
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] Log opened at 2024-10-17 20:05:37.835940
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] Log opened at 2024-10-17 20:05:37.844021
+[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371'
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 20:05:39.058696
+
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-10-17 20:05:39.812626
+
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] Log closed at 2024-10-17 20:05:40.206365
+
+[327] Log opened at 2024-10-17 20:05:40.309071
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 20:05:41.622338
+
+[369] Log opened at 2024-10-17 20:07:50.485588
+[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369'
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] Log closed at 2024-10-17 20:07:53.366131
+
+[369] Log opened at 2024-10-17 20:07:53.743900
+[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369'
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[373] Log opened at 2024-10-17 20:07:53.829756
+[373] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.373'
+[373] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[373] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] Log closed at 2024-10-17 20:07:54.441620
+
+[373] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[373] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[373] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[373] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[373] Log closed at 2024-10-17 20:07:55.267863
+
+[370] Log opened at 2024-10-17 20:07:55.434332
+[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370'
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] Log opened at 2024-10-17 20:07:55.576088
+[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369'
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] Log opened at 2024-10-17 20:07:55.577226
+[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320'
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[369] Log closed at 2024-10-17 20:07:56.854538
+
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[370] Log closed at 2024-10-17 20:07:57.596386
+
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[320] Log closed at 2024-10-17 20:07:57.959797
+
+[372] Log opened at 2024-10-17 20:07:58.066918
+[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372'
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[372] Log closed at 2024-10-17 20:07:59.386412
+
+[371] Log opened at 2024-10-17 20:08:28.938437
+[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371'
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] Log closed at 2024-10-17 20:08:32.186215
+
+[371] Log opened at 2024-10-17 20:08:32.454446
+[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371'
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] Log opened at 2024-10-17 20:08:32.468057
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[371] Log closed at 2024-10-17 20:08:33.149621
+
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 20:08:33.864360
+
+[327] Log opened at 2024-10-17 20:08:33.939125
+[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327'
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] Log opened at 2024-10-17 20:08:34.061154
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[374] Log opened at 2024-10-17 20:08:34.083972
+[374] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.374'
+[374] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[374] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-10-17 20:08:35.246726
+
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[374] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[327] Log closed at 2024-10-17 20:08:36.000835
+
+[374] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[374] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[374] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[374] Log closed at 2024-10-17 20:08:36.356784
+
+[362] Log opened at 2024-10-17 20:08:36.429742
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-10-17 20:08:37.737396
+
+[26] Log opened at 2024-10-18 07:21:11.148156
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-18 07:21:12.150553
+
+[36] Log opened at 2024-10-18 07:21:12.208398
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-10-18 07:21:12.847747
+
+[34] Log opened at 2024-10-18 07:21:13.031684
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-18 07:21:13.848173
+
+[26] Log opened at 2024-10-18 07:21:14.629695
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-18 07:21:15.876790
+
+[26] Log opened at 2024-10-18 07:21:15.881880
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-18 07:21:16.905359
+
+[34] Log opened at 2024-10-18 07:21:16.948936
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-18 07:21:17.579654
+
+[34] Log opened at 2024-10-18 07:21:17.623598
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] Log opened at 2024-10-18 07:21:17.635958
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-10-18 07:21:18.439544
+
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-18 07:21:19.182277
+
+[31] Log opened at 2024-10-18 07:21:22.187251
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-10-18 07:21:23.264473
+
+[31] Log opened at 2024-10-18 07:21:23.309318
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-10-18 07:21:23.937183
+
+[37] Log opened at 2024-10-18 07:21:24.026891
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[35] Log opened at 2024-10-18 07:21:24.026980
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] Log opened at 2024-10-18 07:21:24.072302
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-18 07:21:24.807998
+
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-10-18 07:21:25.540418
+
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-10-18 07:21:25.979121
+
+[30] Log opened at 2024-10-18 07:21:30.456385
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-10-18 07:21:32.655663
+
+[30] Log opened at 2024-10-18 07:21:32.700415
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] Log opened at 2024-10-18 07:21:32.709766
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-10-18 07:21:33.329480
+
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-10-18 07:21:33.727549
+
+[30] Log opened at 2024-10-18 07:21:33.751344
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] Log opened at 2024-10-18 07:21:33.752377
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] Log opened at 2024-10-18 07:21:33.751641
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-10-18 07:21:34.617720
+
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-10-18 07:21:35.323165
+
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-18 07:21:35.660732
+
+[33] Log opened at 2024-10-18 07:21:35.684537
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-10-18 07:21:36.718008
+
+[31] Log opened at 2024-10-18 07:26:59.295419
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-10-18 07:27:00.198947
+
+[31] Log opened at 2024-10-18 07:27:00.206454
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-10-18 07:27:01.070909
+
+[26] Log opened at 2024-10-18 07:27:14.880707
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-18 07:27:17.102306
+
+[26] Log opened at 2024-10-18 07:27:17.191480
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] Log opened at 2024-10-18 07:27:17.192790
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-18 07:27:17.820615
+
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-10-18 07:27:18.209257
+
+[36] Log opened at 2024-10-18 07:27:18.321640
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] Log opened at 2024-10-18 07:27:18.333679
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] Log opened at 2024-10-18 07:27:18.339542
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-10-18 07:27:19.192059
+
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-10-18 07:27:19.904240
+
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-18 07:27:20.242100
+
+[33] Log opened at 2024-10-18 07:27:20.272009
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-10-18 07:27:21.333086
+
+[37] Log opened at 2024-10-18 07:36:53.436461
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-18 07:36:54.340663
+
+[30] Log opened at 2024-10-18 07:36:54.429889
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-10-18 07:36:55.308863
+
+[31] Log opened at 2024-10-18 07:37:09.049714
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-10-18 07:37:11.230477
+
+[31] Log opened at 2024-10-18 07:37:11.283613
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] Log opened at 2024-10-18 07:37:11.291435
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[31] Log closed at 2024-10-18 07:37:11.911770
+
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-10-18 07:37:12.314948
+
+[38] Log opened at 2024-10-18 07:37:12.369562
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] Log opened at 2024-10-18 07:37:12.390380
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[27] Log opened at 2024-10-18 07:37:12.392098
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-10-18 07:37:13.221336
+
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-10-18 07:37:13.944590
+
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-10-18 07:37:14.280408
+
+[36] Log opened at 2024-10-18 07:37:14.301652
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-10-18 07:37:15.410239
+
+[33] Log opened at 2024-10-18 07:37:35.834629
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-10-18 07:37:37.980159
+
+[33] Log opened at 2024-10-18 07:37:38.059185
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] Log opened at 2024-10-18 07:37:38.060724
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-10-18 07:37:38.687755
+
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-18 07:37:39.085740
+
+[37] Log opened at 2024-10-18 07:37:39.108361
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] Log opened at 2024-10-18 07:37:39.156431
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] Log opened at 2024-10-18 07:37:39.157088
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-10-18 07:37:39.988192
+
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-18 07:37:40.708616
+
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-10-18 07:37:41.050001
+
+[30] Log opened at 2024-10-18 07:37:41.078877
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-10-18 07:37:42.154817
+
+[26] Log opened at 2024-10-18 07:38:47.273104
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-18 07:38:48.265883
+
+[28] Log opened at 2024-10-18 07:40:11.229699
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-10-18 07:40:13.390491
+
+[28] Log opened at 2024-10-18 07:40:13.467167
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[27] Log opened at 2024-10-18 07:40:13.468970
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-10-18 07:40:14.097074
+
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-10-18 07:40:14.484878
+
+[27] Log opened at 2024-10-18 07:40:14.535926
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] Log opened at 2024-10-18 07:40:14.554396
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[38] Log opened at 2024-10-18 07:40:14.554463
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-18 07:40:15.382301
+
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-10-18 07:40:16.104582
+
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-10-18 07:40:16.443296
+
+[37] Log opened at 2024-10-18 07:40:16.470831
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-18 07:40:17.564842
+
+[39] Log opened at 2024-10-18 07:40:25.304668
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-10-18 07:40:27.486658
+
+[39] Log opened at 2024-10-18 07:40:27.573161
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] Log opened at 2024-10-18 07:40:27.574935
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-10-18 07:40:28.203990
+
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-10-18 07:40:28.587251
+
+[30] Log opened at 2024-10-18 07:40:28.614142
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] Log opened at 2024-10-18 07:40:28.668115
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[40] Log opened at 2024-10-18 07:40:28.668399
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-10-18 07:40:29.501264
+
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-10-18 07:40:30.224463
+
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-18 07:40:30.557403
+
+[40] Log opened at 2024-10-18 07:40:30.582363
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-10-18 07:40:31.680241
+
+[31] Log opened at 2024-10-18 07:40:53.427837
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_list -i 1
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_list -i 2
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_list -i 3
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_list -i 4
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_list -i 5
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 134
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_set -i 9 -t exception -x *
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- run -i 10
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- stack_get -i 11
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- context_names -i 12 -d 0
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- context_get -i 13 -d 0 -c 0
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- context_get -i 14 -d 0 -c 1
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- context_get -i 15 -d 0 -c 2
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_list -i 16
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_remove -i 17 -d 310003
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- run -i 18
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- stop -i 19
+[31] [Step Debug] ->
+
+[31] Log closed at 2024-10-18 07:41:05.600840
+
+[31] Log opened at 2024-10-18 07:41:05.671681
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] ->
+
+[38] Log opened at 2024-10-18 07:41:05.673018
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_list -i 1
+[38] [Step Debug] <- breakpoint_list -i 1
+[38] [Step Debug] ->
+
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_list -i 2
+[38] [Step Debug] <- breakpoint_list -i 2
+[31] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_list -i 3
+[31] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 3
+[38] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_list -i 4
+[31] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 4
+[31] [Step Debug] <- breakpoint_list -i 5
+[38] [Step Debug] ->
+
+[31] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 5
+[31] [Step Debug] <- breakpoint_list -i 6
+[38] [Step Debug] ->
+
+[31] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 6
+[38] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_list -i 7
+[38] [Step Debug] <- breakpoint_list -i 7
+[31] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_list -i 8
+[38] [Step Debug] <- breakpoint_list -i 8
+[31] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[31] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[31] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132
+[38] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132
+[31] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x *
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x *
+[38] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_set -i 11 -t exception -x *
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_set -i 14 -t exception -x *
+[31] [Step Debug] ->
+
+[38] [Step Debug] <- run -i 15
+[31] [Step Debug] <- run -i 15
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- stop -i 16
+[31] [Step Debug] ->
+
+[31] Log closed at 2024-10-18 07:41:05.760620
+
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- stop -i 16
+[38] [Step Debug] ->
+
+[38] Log closed at 2024-10-18 07:41:06.156545
+
+[38] Log opened at 2024-10-18 07:41:06.175597
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 1
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 2
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 3
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 4
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[38] [Step Debug] ->
+
+[37] Log opened at 2024-10-18 07:41:06.230900
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ->
+
+[30] Log opened at 2024-10-18 07:41:06.232065
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ->
+
+[37] [Step Debug] <- run -i 1
+[30] [Step Debug] <- run -i 1
+[38] [Step Debug] <- run -i 8
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 2
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 3
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 4
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 5
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 6
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 7
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 8
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 9
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- stop -i 10
+[37] [Step Debug] ->
+
+[37] Log closed at 2024-10-18 07:41:06.463183
+
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_list -i 2
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_list -i 3
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_list -i 4
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_list -i 5
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_list -i 6
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_list -i 7
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_list -i 8
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_list -i 9
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- stop -i 10
+[30] [Step Debug] ->
+
+[30] Log closed at 2024-10-18 07:41:06.598506
+
+[37] Log opened at 2024-10-18 07:41:06.621024
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 2
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 3
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 4
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[37] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 9
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 10
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 11
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 12
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 13
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 14
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 15
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 16
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 17
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 18
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 19
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 20
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_remove -i 21 -d 380005
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_remove -i 22 -d 380006
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_remove -i 23 -d 380007
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_remove -i 24 -d 380005
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_remove -i 25 -d 380006
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_remove -i 26 -d 380007
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_remove -i 27 -d 380005
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_remove -i 28 -d 380006
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_remove -i 29 -d 380007
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 32 -t exception -x *
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- stack_get -i 33
+[38] [Step Debug] ->
+
+[37] [Step Debug] <- run -i 8
+[38] [Step Debug] <- context_names -i 34 -d 0
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- run -i 35
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- stack_get -i 36
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- context_names -i 37 -d 0
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- run -i 38
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- stack_get -i 39
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- context_names -i 40 -d 0
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- run -i 41
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- stack_get -i 42
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- context_names -i 43 -d 0
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- run -i 44
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- stop -i 45
+[38] [Step Debug] ->
+
+[38] Log closed at 2024-10-18 07:41:21.411824
+
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- stack_get -i 9
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_names -i 10 -d 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_get -i 11 -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_get -i 12 -d 0 -c 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_get -i 13 -d 0 -c 2
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 14 -d 0 -c 0 -n "$builder"
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- eval -i 15 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_names -i 16 -d 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_get -i 17 -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_get -i 18 -d 0 -c 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_get -i 19 -d 0 -c 2
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- run -i 20
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- stack_get -i 21
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- eval -i 22 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_names -i 23 -d 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_get -i 24 -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- run -i 25
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- stop -i 26
+[37] [Step Debug] ->
+
+[37] Log closed at 2024-10-18 07:42:51.633974
+
+[37] Log opened at 2024-10-18 07:42:55.660932
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 2
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 3
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 4
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- run -i 8
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- stop -i 9
+[37] [Step Debug] ->
+
+[37] Log closed at 2024-10-18 07:42:57.320072
+
+[37] Log opened at 2024-10-18 07:42:57.398997
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 2
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 3
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 4
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[37] [Step Debug] ->
+
+[27] Log opened at 2024-10-18 07:42:57.409692
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[27] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- run -i 1
+[37] [Step Debug] <- run -i 8
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 9
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 10
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 11
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 12
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- stop -i 13
+[37] [Step Debug] ->
+
+[37] Log closed at 2024-10-18 07:42:57.455490
+
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_list -i 2
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_list -i 3
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_list -i 4
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_list -i 5
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- stop -i 6
+[27] [Step Debug] ->
+
+[27] Log closed at 2024-10-18 07:42:57.844079
+
+[37] Log opened at 2024-10-18 07:42:57.903474
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 2
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 3
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 4
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[37] [Step Debug] ->
+
+[40] Log opened at 2024-10-18 07:42:57.914647
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[27] Log opened at 2024-10-18 07:42:57.914646
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[40] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] ->
+
+[27] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ->
+
+[37] [Step Debug] <- run -i 8
+[27] [Step Debug] <- run -i 1
+[40] [Step Debug] <- run -i 1
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_list -i 2
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_list -i 3
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_list -i 4
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_list -i 5
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_list -i 6
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_list -i 7
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_list -i 8
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_list -i 9
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- stop -i 10
+[27] [Step Debug] ->
+
+[27] Log closed at 2024-10-18 07:42:58.185702
+
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 9
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 10
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 11
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 12
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 13
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 14
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 15
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 16
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_remove -i 17 -d 370010
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_remove -i 18 -d 370011
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_remove -i 19 -d 370012
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_remove -i 20 -d 370010
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_remove -i 21 -d 370011
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_remove -i 22 -d 370012
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 25 -t exception -x *
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- stack_get -i 26
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- eval -i 27 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_names -i 28 -d 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- run -i 29
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- stack_get -i 30
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- eval -i 31 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_names -i 32 -d 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- run -i 33
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- stack_get -i 34
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- eval -i 35 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_names -i 36 -d 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- run -i 37
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- stack_get -i 38
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- eval -i 39 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_names -i 40 -d 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- run -i 41
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- stop -i 42
+[37] [Step Debug] ->
+
+[37] Log closed at 2024-10-18 07:43:03.353967
+
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_list -i 2
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_list -i 3
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_list -i 4
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_list -i 5
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_list -i 6
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_list -i 7
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_list -i 8
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_list -i 9
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- stop -i 10
+[40] [Step Debug] ->
+
+[40] Log closed at 2024-10-18 07:43:03.486867
+
+[40] Log opened at 2024-10-18 07:43:03.520942
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[40] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_list -i 1
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_list -i 2
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_list -i 3
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_list -i 4
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- run -i 8
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- stack_get -i 9
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- eval -i 10 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- context_names -i 11 -d 0
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- context_get -i 12 -d 0 -c 0
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_list -i 13
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_remove -i 14 -d 400002
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- run -i 15
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- stack_get -i 16
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- eval -i 17 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- context_names -i 18 -d 0
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- context_get -i 19 -d 0 -c 0
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- run -i 20
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- stop -i 21
+[40] [Step Debug] ->
+
+[40] Log closed at 2024-10-18 07:43:41.121639
+
+[38] Log opened at 2024-10-18 07:48:51.912101
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 1
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 2
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 3
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 4
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2249
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- run -i 8
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- stop -i 9
+[38] [Step Debug] ->
+
+[38] Log closed at 2024-10-18 07:48:53.576542
+
+[38] Log opened at 2024-10-18 07:48:53.655108
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ->
+
+[36] Log opened at 2024-10-18 07:48:53.656766
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 1
+[38] [Step Debug] <- breakpoint_list -i 1
+[38] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 2
+[38] [Step Debug] <- breakpoint_list -i 2
+[36] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 3
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 4
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 5
+[38] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 3
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 4
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 5
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 6
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 7
+[36] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 6
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 7
+[38] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 8
+[38] [Step Debug] <- breakpoint_list -i 8
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[36] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2249
+[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[38] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2249
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 11 -t exception -x *
+[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x *
+[36] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[36] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[38] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2249
+[36] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2249
+[38] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 14 -t exception -x *
+[36] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x *
+[38] [Step Debug] ->
+
+[36] [Step Debug] <- run -i 15
+[38] [Step Debug] <- run -i 15
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- stop -i 16
+[38] [Step Debug] ->
+
+[38] Log closed at 2024-10-18 07:48:53.739022
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stop -i 16
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-10-18 07:48:54.125969
+
+[36] Log opened at 2024-10-18 07:48:54.148241
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 2
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 3
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 4
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2249
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[36] [Step Debug] ->
+
+[41] Log opened at 2024-10-18 07:48:54.195882
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] Log opened at 2024-10-18 07:48:54.195938
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[41] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ->
+
+[28] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ->
+
+[41] [Step Debug] <- run -i 1
+[36] [Step Debug] <- run -i 8
+[28] [Step Debug] <- run -i 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_list -i 2
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_list -i 3
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_list -i 4
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_list -i 5
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_list -i 6
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_list -i 7
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_list -i 8
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_list -i 9
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- stop -i 10
+[41] [Step Debug] ->
+
+[41] Log closed at 2024-10-18 07:48:54.435607
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 9
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 10
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 11
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 12
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 13
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 14
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 15
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 16
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_remove -i 17 -d 360005
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_remove -i 18 -d 360006
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_remove -i 19 -d 360007
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_remove -i 20 -d 360005
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_remove -i 21 -d 360006
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_remove -i 22 -d 360007
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2249
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 25 -t exception -x *
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stack_get -i 26
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- eval -i 27 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- context_names -i 28 -d 0
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 29
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_remove -i 30 -d 360008
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- run -i 31
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stack_get -i 32
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- eval -i 33 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- context_names -i 34 -d 0
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- run -i 35
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stack_get -i 36
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- eval -i 37 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- context_names -i 38 -d 0
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- run -i 39
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stack_get -i 40
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- eval -i 41 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- context_names -i 42 -d 0
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- run -i 43
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stop -i 44
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-10-18 07:49:06.608287
+
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 2
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 3
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 4
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 5
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 6
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 7
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 8
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 9
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 10
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stop -i 11
+[28] [Step Debug] ->
+
+[28] Log closed at 2024-10-18 07:49:06.746434
+
+[28] Log opened at 2024-10-18 07:49:06.774266
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 1
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 2
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 3
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2249
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- run -i 6
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stack_get -i 7
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- eval -i 8 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_names -i 9 -d 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_get -i 10 -d 0 -c 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- step_over -i 11
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stack_get -i 12
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stack_get -i 13
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- eval -i 14 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_names -i 15 -d 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_get -i 16 -d 0 -c 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- step_over -i 17
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stack_get -i 18
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- eval -i 19 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_names -i 20 -d 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_get -i 21 -d 0 -c 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- step_over -i 22
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stack_get -i 23
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- eval -i 24 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_names -i 25 -d 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_get -i 26 -d 0 -c 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- step_over -i 27
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stack_get -i 28
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- eval -i 29 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_names -i 30 -d 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_get -i 31 -d 0 -c 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- step_over -i 32
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stack_get -i 33
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stack_get -i 34
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- eval -i 35 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_names -i 36 -d 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_get -i 37 -d 0 -c 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- step_over -i 38
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stack_get -i 39
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- eval -i 40 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_names -i 41 -d 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_get -i 42 -d 0 -c 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 43
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_remove -i 44 -d 280001
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- run -i 45
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stop -i 46
+[28] [Step Debug] ->
+
+[28] Log closed at 2024-10-18 07:50:09.250095
+
+[39] Log opened at 2024-10-18 07:50:26.456700
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_list -i 1
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_list -i 2
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 3 -t exception -x *
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- run -i 4
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- stop -i 5
+[39] [Step Debug] ->
+
+[39] Log closed at 2024-10-18 07:50:28.070757
+
+[39] Log opened at 2024-10-18 07:50:28.176635
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_list -i 1
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_list -i 2
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 3 -t exception -x *
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- run -i 4
+[26] Log opened at 2024-10-18 07:50:28.220992
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 1
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 2
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 3 -t exception -x *
+[26] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_list -i 5
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_list -i 6
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- stop -i 7
+[39] [Step Debug] ->
+
+[39] Log closed at 2024-10-18 07:50:28.246659
+
+[37] Log opened at 2024-10-18 07:50:51.948220
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[28] Log opened at 2024-10-18 07:50:51.948200
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ->
+
+[37] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 1
+[26] [Step Debug] <- breakpoint_list -i 4
+[28] [Step Debug] ->
+
+[26] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 1
+[37] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 2
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 3
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 4
+[28] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 5
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 6
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 7
+[26] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 2
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 3
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 4
+[37] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[28] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_remove -i 8 -d 260001
+[26] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[37] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 6 -t exception -x *
+[28] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 6 -t exception -x *
+[26] [Step Debug] <- breakpoint_remove -i 9 -d 260001
+[37] [Step Debug] ->
+
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- run -i 11
+[37] [Step Debug] <- run -i 7
+[28] [Step Debug] <- run -i 7
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- stop -i 8
+[37] [Step Debug] ->
+
+[37] Log closed at 2024-10-18 07:50:52.208658
+
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stop -i 8
+[28] [Step Debug] ->
+
+[28] Log closed at 2024-10-18 07:50:53.517646
+
+[37] Log opened at 2024-10-18 07:50:53.600196
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 2
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 3 -t exception -x *
+[37] [Step Debug] ->
+
+[31] Log opened at 2024-10-18 07:50:53.641063
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 4
+[31] [Step Debug] <- breakpoint_list -i 1
+[31] [Step Debug] ->
+
+[37] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_list -i 2
+[31] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 5
+[37] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_set -i 3 -t exception -x *
+[31] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_remove -i 6 -d 370018
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[37] [Step Debug] ->
+
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 12
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 13
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 14
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 15
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- stop -i 16
+[26] [Step Debug] ->
+
+[26] Log closed at 2024-10-18 07:50:53.716966
+
+[37] [Step Debug] <- stop -i 8
+[37] [Step Debug] ->
+
+[31] [Step Debug] <- stop -i 4
+[31] [Step Debug] ->
+
+[38] Log opened at 2024-10-18 07:50:55.595663
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[43] Log opened at 2024-10-18 07:50:55.596756
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[43] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-10-18 07:50:56.224568
+
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-10-18 07:50:56.608975
+
+[42] Log opened at 2024-10-18 07:50:56.632909
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] Log opened at 2024-10-18 07:50:56.687861
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] Log opened at 2024-10-18 07:50:56.692068
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-10-18 07:50:57.518814
+
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-18 07:50:58.219272
+
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-10-18 07:50:58.552446
+
+[38] Log opened at 2024-10-18 07:50:58.577691
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-10-18 07:50:59.674168
+
+[38] Log opened at 2024-10-18 07:51:04.557120
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-10-18 07:51:05.549753
+
+[44] Log opened at 2024-10-18 07:55:58.744973
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-10-18 07:56:01.061776
+
+[44] Log opened at 2024-10-18 07:56:01.179737
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[43] Log opened at 2024-10-18 07:56:01.219196
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-10-18 07:56:01.809641
+
+[43] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-10-18 07:56:02.241843
+
+[45] Log opened at 2024-10-18 07:56:02.306822
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] Log opened at 2024-10-18 07:56:02.325407
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] Log opened at 2024-10-18 07:56:02.326273
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-10-18 07:56:03.174519
+
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-10-18 07:56:03.887736
+
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-18 07:56:04.228923
+
+[28] Log opened at 2024-10-18 07:56:04.252723
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-10-18 07:56:05.350961
+
+[39] Log opened at 2024-10-18 07:58:46.173099
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_list -i 1
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_list -i 2
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_list -i 3
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- run -i 6
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- stop -i 7
+[39] [Step Debug] ->
+
+[39] Log closed at 2024-10-18 07:58:47.854044
+
+[38] Log opened at 2024-10-18 07:58:47.949271
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] Log opened at 2024-10-18 07:58:47.950899
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ->
+
+[39] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 1
+[39] [Step Debug] <- breakpoint_list -i 1
+[39] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_list -i 2
+[38] [Step Debug] <- breakpoint_list -i 2
+[38] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 3
+[39] [Step Debug] <- breakpoint_list -i 3
+[38] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_list -i 4
+[38] [Step Debug] <- breakpoint_list -i 4
+[39] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_list -i 5
+[38] [Step Debug] <- breakpoint_list -i 5
+[39] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_list -i 6
+[38] [Step Debug] <- breakpoint_list -i 6
+[39] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[38] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[39] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[38] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[39] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[38] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[39] [Step Debug] ->
+
+[38] [Step Debug] <- run -i 11
+[39] [Step Debug] <- run -i 11
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- stop -i 12
+[38] [Step Debug] ->
+
+[38] Log closed at 2024-10-18 07:58:48.037150
+
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- stop -i 12
+[39] [Step Debug] ->
+
+[39] Log closed at 2024-10-18 07:58:48.428607
+
+[26] Log opened at 2024-10-18 07:58:48.481602
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 1
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 2
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 3
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[26] [Step Debug] ->
+
+[38] Log opened at 2024-10-18 07:58:48.497565
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[47] Log opened at 2024-10-18 07:58:48.498073
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ->
+
+[47] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] ->
+
+[26] [Step Debug] <- run -i 6
+[38] [Step Debug] <- run -i 1
+[47] [Step Debug] <- run -i 1
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 2
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 3
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 4
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 5
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 6
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 7
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- stop -i 8
+[38] [Step Debug] ->
+
+[38] Log closed at 2024-10-18 07:58:48.731612
+
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 7
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 8
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 9
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 10
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 11
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 12
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_remove -i 13 -d 260003
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_remove -i 14 -d 260004
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_remove -i 15 -d 260003
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_remove -i 16 -d 260004
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 18 -t exception -x *
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- stack_get -i 19
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- eval -i 20 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- context_names -i 21 -d 0
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- run -i 22
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- stack_get -i 23
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- eval -i 24 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- context_names -i 25 -d 0
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- run -i 26
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- stack_get -i 27
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- eval -i 28 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- context_names -i 29 -d 0
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- run -i 30
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- stack_get -i 31
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- eval -i 32 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- context_names -i 33 -d 0
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- run -i 34
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- stop -i 35
+[26] [Step Debug] ->
+
+[26] Log closed at 2024-10-18 07:58:54.445230
+
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 2
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 3
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 4
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 5
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 6
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 7
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stop -i 8
+[47] [Step Debug] ->
+
+[47] Log closed at 2024-10-18 07:58:54.577621
+
+[47] Log opened at 2024-10-18 07:58:54.603353
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[47] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 1
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 2
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 3
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- run -i 6
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stack_get -i 7
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- eval -i 8 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_names -i 9 -d 0
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_get -i 10 -d 0 -c 0
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_get -i 11 -d 0 -c 1
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_get -i 12 -d 0 -c 2
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- step_over -i 13
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stack_get -i 14
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- eval -i 15 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_names -i 16 -d 0
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_get -i 17 -d 0 -c 0
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_get -i 18 -d 0 -c 1
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_get -i 19 -d 0 -c 2
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- run -i 20
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stack_get -i 21
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- eval -i 22 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_names -i 23 -d 0
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_get -i 24 -d 0 -c 0
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- run -i 25
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stop -i 26
+[47] [Step Debug] ->
+
+[47] Log closed at 2024-10-18 07:59:28.465252
+
+[45] Log opened at 2024-10-18 07:59:30.931465
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 2
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 3
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- run -i 6
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- stop -i 7
+[45] [Step Debug] ->
+
+[45] Log closed at 2024-10-18 07:59:32.540957
+
+[45] Log opened at 2024-10-18 07:59:32.646865
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 2
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 3
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[45] [Step Debug] ->
+
+[43] Log opened at 2024-10-18 07:59:32.687191
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[43] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] ->
+
+[45] [Step Debug] <- run -i 6
+[43] [Step Debug] <- run -i 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 7
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 8
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 9
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- stop -i 10
+[45] [Step Debug] ->
+
+[45] Log closed at 2024-10-18 07:59:32.726226
+
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- breakpoint_list -i 2
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- breakpoint_list -i 3
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- breakpoint_list -i 4
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- stop -i 5
+[43] [Step Debug] ->
+
+[43] Log closed at 2024-10-18 07:59:33.118784
+
+[44] Log opened at 2024-10-18 07:59:33.144794
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 2
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 3
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- run -i 6
+[28] Log opened at 2024-10-18 07:59:33.211109
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[46] Log opened at 2024-10-18 07:59:33.211313
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ->
+
+[46] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 1
+[28] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 1
+[46] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 2
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 3
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 4
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 5
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 6
+[28] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 2
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 3
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 4
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 5
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 6
+[46] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[28] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[46] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[46] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[28] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[46] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[46] [Step Debug] ->
+
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[28] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 7
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 8
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 9
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 10
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 11
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 12
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_remove -i 13 -d 440001
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_remove -i 14 -d 440002
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_remove -i 15 -d 440001
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_remove -i 16 -d 440002
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 18 -t exception -x *
+[44] [Step Debug] ->
+
+[28] [Step Debug] <- run -i 11
+[46] [Step Debug] <- run -i 11
+[44] [Step Debug] <- stack_get -i 19
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- eval -i 20 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- context_names -i 21 -d 0
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- run -i 22
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- stack_get -i 23
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- eval -i 24 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- context_names -i 25 -d 0
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- run -i 26
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- stack_get -i 27
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- eval -i 28 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- context_names -i 29 -d 0
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- run -i 30
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- stack_get -i 31
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- eval -i 32 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- context_names -i 33 -d 0
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- run -i 34
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- stop -i 35
+[44] [Step Debug] ->
+
+[44] Log closed at 2024-10-18 07:59:42.337548
+
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stop -i 12
+[28] [Step Debug] ->
+
+[28] Log closed at 2024-10-18 07:59:42.538967
+
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- stop -i 12
+[46] [Step Debug] ->
+
+[46] Log closed at 2024-10-18 07:59:42.669027
+
+[28] Log opened at 2024-10-18 07:59:42.698358
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 1
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 2
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 3
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- run -i 6
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stack_get -i 7
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- eval -i 8 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_names -i 9 -d 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_get -i 10 -d 0 -c 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- step_over -i 11
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stack_get -i 12
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- eval -i 13 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_names -i 14 -d 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_get -i 15 -d 0 -c 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_get -i 16 -d 0 -c 1
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_get -i 17 -d 0 -c 2
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- property_get -i 18 -d 0 -c 0 -n "$builder"
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 19
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_remove -i 20 -d 280008
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 125
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- run -i 22
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stack_get -i 23
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- eval -i 24 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_names -i 25 -d 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_get -i 26 -d 0 -c 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- run -i 27
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stop -i 28
+[28] [Step Debug] ->
+
+[28] Log closed at 2024-10-18 08:00:56.279666
+
+[26] Log opened at 2024-10-18 08:01:08.465825
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 1
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 2
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 3
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 125
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- run -i 6
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- stop -i 7
+[26] [Step Debug] ->
+
+[26] Log closed at 2024-10-18 08:01:10.069651
+
+[26] Log opened at 2024-10-18 08:01:10.160222
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ->
+
+[47] Log opened at 2024-10-18 08:01:10.162964
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[47] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 1
+[26] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 1
+[47] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 2
+[47] [Step Debug] <- breakpoint_list -i 2
+[26] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 3
+[26] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 3
+[47] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 4
+[47] [Step Debug] <- breakpoint_list -i 4
+[26] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 5
+[47] [Step Debug] <- breakpoint_list -i 5
+[26] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 6
+[47] [Step Debug] <- breakpoint_list -i 6
+[26] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 125
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[26] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 125
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 125
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[47] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 125
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[26] [Step Debug] ->
+
+[47] [Step Debug] <- run -i 11
+[26] [Step Debug] <- run -i 11
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- stop -i 12
+[26] [Step Debug] ->
+
+[26] Log closed at 2024-10-18 08:01:10.252300
+
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stop -i 12
+[47] [Step Debug] ->
+
+[47] Log closed at 2024-10-18 08:01:10.624406
+
+[47] Log opened at 2024-10-18 08:01:10.681570
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[47] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 1
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 2
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 3
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 125
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[47] [Step Debug] ->
+
+[45] Log opened at 2024-10-18 08:01:10.703572
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[48] Log opened at 2024-10-18 08:01:10.703680
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[47] [Step Debug] <- run -i 6
+[45] [Step Debug] <- run -i 1
+[48] [Step Debug] <- run -i 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_list -i 2
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_list -i 3
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_list -i 4
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_list -i 5
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_list -i 6
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_list -i 7
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- stop -i 8
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-10-18 08:01:10.940934
+
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 7
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 8
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 9
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 10
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 11
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 12
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_remove -i 13 -d 470006
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_remove -i 14 -d 470007
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_remove -i 15 -d 470006
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_remove -i 16 -d 470007
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 125
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 18 -t exception -x *
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stack_get -i 19
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- eval -i 20 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_names -i 21 -d 0
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- run -i 22
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stack_get -i 23
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- eval -i 24 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_names -i 25 -d 0
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- run -i 26
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stack_get -i 27
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- eval -i 28 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_names -i 29 -d 0
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- run -i 30
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stack_get -i 31
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- eval -i 32 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_names -i 33 -d 0
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- run -i 34
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stop -i 35
+[47] [Step Debug] ->
+
+[47] Log closed at 2024-10-18 08:01:22.229173
+
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 2
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 3
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 4
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 5
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 6
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 7
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- stop -i 8
+[45] [Step Debug] ->
+
+[45] Log closed at 2024-10-18 08:01:22.369323
+
+[45] Log opened at 2024-10-18 08:01:22.398335
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 2
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 3
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 125
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- run -i 6
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- stop -i 7
+[45] [Step Debug] ->
+
+[45] Log closed at 2024-10-18 08:01:22.931123
+
+[46] Log opened at 2024-10-18 09:46:17.271549
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[46] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 1
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 2
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 3
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- run -i 6
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- stop -i 7
+[46] [Step Debug] ->
+
+[46] Log closed at 2024-10-18 09:46:19.031480
+
+[46] Log opened at 2024-10-18 09:46:19.120555
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] Log opened at 2024-10-18 09:46:19.121828
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[46] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ->
+
+[28] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 1
+[46] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 1
+[28] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 2
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 3
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 4
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 5
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 6
+[46] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 2
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 3
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 4
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 5
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 6
+[28] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[28] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[28] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[46] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[28] [Step Debug] ->
+
+[46] [Step Debug] <- run -i 11
+[28] [Step Debug] <- run -i 11
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stop -i 12
+[28] [Step Debug] ->
+
+[28] Log closed at 2024-10-18 09:46:19.209815
+
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- stop -i 12
+[46] [Step Debug] ->
+
+[46] Log closed at 2024-10-18 09:46:19.578680
+
+[47] Log opened at 2024-10-18 09:46:19.601757
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[47] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 1
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 2
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 3
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[47] [Step Debug] ->
+
+[45] Log opened at 2024-10-18 09:46:19.660283
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ->
+
+[44] Log opened at 2024-10-18 09:46:19.661459
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ->
+
+[47] [Step Debug] <- run -i 6
+[45] [Step Debug] <- run -i 1
+[44] [Step Debug] <- run -i 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 2
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 3
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 4
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 5
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 6
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 7
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- stop -i 8
+[45] [Step Debug] ->
+
+[45] Log closed at 2024-10-18 09:46:19.933980
+
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 7
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 8
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 9
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 10
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 11
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 12
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_remove -i 13 -d 470010
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_remove -i 14 -d 470011
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_remove -i 15 -d 470010
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_remove -i 16 -d 470011
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 18 -t exception -x *
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stack_get -i 19
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- eval -i 20 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_names -i 21 -d 0
+[47] [Step Debug] ->
+
+[48] Log opened at 2024-10-18 09:46:47.492828
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[48] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_list -i 1
+[47] [Step Debug] <- breakpoint_list -i 22
+[48] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_list -i 2
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_list -i 3
+[48] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 23
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 24
+[47] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[48] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_remove -i 25 -d 470012
+[47] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[47] [Step Debug] <- breakpoint_remove -i 26 -d 470013
+[48] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 28 -t exception -x *
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stop -i 29
+[47] [Step Debug] ->
+
+[48] [Step Debug] <- stop -i 6
+[48] [Step Debug] ->
+
+[47] [Step Debug] -> query('SELECT `chats`....', 0)
+#1 /var/www/html/ci4/vendor/codeigniter4/framework/system/Database/BaseConnection.php(734): CodeIgniter\Database\MySQLi\Connection->execute('SELECT `chats`....')
+#2 /var/www/html/ci4/vendor/codeigniter4/framework/system/Database/BaseConnection.php(648): CodeIgniter\Database\BaseConnection->simpleQuery('SELECT `chats`....')
+#3 /var/www/html/ci4/vendor/codeigniter4/framework/system/Database/BaseBuilder.php(1644): CodeIgniter\Database\BaseConnection->query('SELECT `chats`....', Array, false)
+#4 /var/www/html/ci4/app/Models/Chat/ChatModel.php(362): CodeIgniter\Database\BaseBuilder->get()
+#5 /var/www/html/ci4/app/Controllers/Chat/ChatController.php(240): App\Models\Chat\ChatModel->getChatInternalNotifications()
+#6 /var/www/html/ci4/vendor/codeigniter4/framework/system/CodeIgniter.php(933): App\Controllers\Chat\ChatController->get_chat_cliente('$1')
+#7 /var/www/html/ci4/vendor/codeigniter4/framework/system/CodeIgniter.php(509): CodeIgniter\CodeIgniter->runController(Object(App\Controllers\Chat\ChatController))
+#8 /var/www/html/ci4/vendor/codeigniter4/framework/system/CodeIgniter.php(355): CodeIgniter\CodeIgniter->handleRequest(NULL, Object(Config\Cache), false)
+#9 /var/www/html/ci4/vendor/codeigniter4/framework/system/Boot.php(325): CodeIgniter\CodeIgniter->run()
+#10 /var/www/html/ci4/vendor/codeigniter4/framework/system/Boot.php(67): CodeIgniter\Boot::runCodeIgniter(Object(CodeIgniter\CodeIgniter))
+#11 /var/www/html/httpdocs/index.php(56): CodeIgniter\Boot::bootWeb(Object(Config\Paths))
+#12 {main}
+ thrown]]>
+
+[47] [Step Debug] -> query('SELECT `chats`....', 0)
+#1 /var/www/html/ci4/vendor/codeigniter4/framework/system/Database/BaseConnection.php(734): CodeIgniter\Database\MySQLi\Connection->execute('SELECT `chats`....')
+#2 /var/www/html/ci4/vendor/codeigniter4/framework/system/Database/BaseConnection.php(648): CodeIgniter\Database\BaseConnection->simpleQuery('SELECT `chats`....')
+#3 /var/www/html/ci4/vendor/codeigniter4/framework/system/Database/BaseBuilder.php(1644): CodeIgniter\Database\BaseConnection->query('SELECT `chats`....', Array, false)
+#4 /var/www/html/ci4/app/Models/Chat/ChatModel.php(362): CodeIgniter\Database\BaseBuilder->get()
+#5 /var/www/html/ci4/app/Controllers/Chat/ChatController.php(240): App\Models\Chat\ChatModel->getChatInternalNotifications()
+#6 /var/www/html/ci4/vendor/codeigniter4/framework/system/CodeIgniter.php(933): App\Controllers\Chat\ChatController->get_chat_cliente('$1')
+#7 /var/www/html/ci4/vendor/codeigniter4/framework/system/CodeIgniter.php(509): CodeIgniter\CodeIgniter->runController(Object(App\Controllers\Chat\ChatController))
+#8 /var/www/html/ci4/vendor/codeigniter4/framework/system/CodeIgniter.php(355): CodeIgniter\CodeIgniter->handleRequest(NULL, Object(Config\Cache), false)
+#9 /var/www/html/ci4/vendor/codeigniter4/framework/system/Boot.php(325): CodeIgniter\CodeIgniter->run()
+#10 /var/www/html/ci4/vendor/codeigniter4/framework/system/Boot.php(67): CodeIgniter\Boot::runCodeIgniter(Object(CodeIgniter\CodeIgniter))
+#11 /var/www/html/httpdocs/index.php(56): CodeIgniter\Boot::bootWeb(Object(Config\Paths))
+#12 {main}
+ thrown]]>
+
+[47] [Step Debug] ->
+
+[47] Log closed at 2024-10-18 09:47:02.423246
+
+[42] Log opened at 2024-10-18 09:47:02.423440
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_list -i 1
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_list -i 2
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_list -i 3
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[42] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 2
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 3
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 4
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 5
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 6
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 7
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 8
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 9
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 10
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- stop -i 11
+[44] [Step Debug] ->
+
+[44] Log closed at 2024-10-18 09:47:02.565742
+
+[42] [Step Debug] <- run -i 6
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- stop -i 7
+[42] [Step Debug] ->
+
+[42] Log closed at 2024-10-18 09:47:04.169323
+
+[42] Log opened at 2024-10-18 09:47:04.297788
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] Log opened at 2024-10-18 09:47:04.342176
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-18 09:47:04.927793
+
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-10-18 09:47:05.353876
+
+[42] Log opened at 2024-10-18 09:47:05.388769
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] Log opened at 2024-10-18 09:47:05.439268
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[46] Log opened at 2024-10-18 09:47:05.444060
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-10-18 09:47:06.274157
+
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-18 09:47:07.006394
+
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[46] Log closed at 2024-10-18 09:47:07.346865
+
+[45] Log opened at 2024-10-18 09:47:07.378627
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-10-18 09:47:08.472907
+
+[50] Log opened at 2024-10-18 10:06:26.837226
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[50] Log closed at 2024-10-18 10:06:29.099416
+
+[51] Log opened at 2024-10-18 10:06:29.217316
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] Log opened at 2024-10-18 10:06:29.218399
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-18 10:06:29.853293
+
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-10-18 10:06:30.234107
+
+[51] Log opened at 2024-10-18 10:06:30.258921
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] Log opened at 2024-10-18 10:06:30.328652
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] Log opened at 2024-10-18 10:06:30.329116
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-18 10:06:31.186924
+
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-10-18 10:06:31.910801
+
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-10-18 10:06:32.245999
+
+[42] Log opened at 2024-10-18 10:06:32.272008
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-18 10:06:33.348313
+
+[45] Log opened at 2024-10-18 10:07:49.030462
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-10-18 10:07:51.205170
+
+[45] Log opened at 2024-10-18 10:07:51.301308
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] Log opened at 2024-10-18 10:07:51.303629
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-10-18 10:07:51.930009
+
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-10-18 10:07:52.303565
+
+[44] Log opened at 2024-10-18 10:07:52.399211
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] Log opened at 2024-10-18 10:07:52.484300
+[49] Log opened at 2024-10-18 10:07:52.484300
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[52] Log closed at 2024-10-18 10:07:53.319229
+
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-10-18 10:07:54.036875
+
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-10-18 10:07:54.371927
+
+[52] Log opened at 2024-10-18 10:07:54.454872
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[52] Log closed at 2024-10-18 10:07:55.564275
+
+[39] Log opened at 2024-10-18 10:17:45.388169
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-10-18 10:17:47.613444
+
+[39] Log opened at 2024-10-18 10:17:47.720879
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] Log opened at 2024-10-18 10:17:47.725306
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-10-18 10:17:48.350747
+
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-18 10:17:48.741654
+
+[26] Log opened at 2024-10-18 10:17:48.772691
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] Log opened at 2024-10-18 10:17:48.844297
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] Log opened at 2024-10-18 10:17:48.844303
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-10-18 10:17:49.691194
+
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-18 10:17:50.402461
+
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-18 10:17:50.741652
+
+[28] Log opened at 2024-10-18 10:17:50.771825
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-10-18 10:17:51.858378
+
+[45] Log opened at 2024-10-18 10:18:11.189486
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-10-18 10:18:13.368766
+
+[45] Log opened at 2024-10-18 10:18:13.510103
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] Log opened at 2024-10-18 10:18:13.549121
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-10-18 10:18:14.139229
+
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-10-18 10:18:14.575076
+
+[51] Log opened at 2024-10-18 10:18:14.658718
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] Log opened at 2024-10-18 10:18:14.667801
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] Log opened at 2024-10-18 10:18:14.669090
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-18 10:18:15.493842
+
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-10-18 10:18:16.210463
+
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[52] Log closed at 2024-10-18 10:18:16.546082
+
+[26] Log opened at 2024-10-18 10:18:16.570087
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-18 10:18:17.652895
+
+[28] Log opened at 2024-10-18 10:18:30.519818
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-10-18 10:18:32.690176
+
+[28] Log opened at 2024-10-18 10:18:32.811406
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] Log opened at 2024-10-18 10:18:32.845857
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-10-18 10:18:33.439992
+
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[51] Log closed at 2024-10-18 10:18:33.845427
+
+[49] Log opened at 2024-10-18 10:18:33.876997
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] Log opened at 2024-10-18 10:18:33.951778
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] Log opened at 2024-10-18 10:18:33.956940
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-10-18 10:18:34.781976
+
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-10-18 10:18:35.494018
+
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-10-18 10:18:35.827439
+
+[45] Log opened at 2024-10-18 10:18:35.852319
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-10-18 10:18:36.950992
+
+[26] Log opened at 2024-10-18 10:18:48.603107
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-18 10:18:50.728108
+
+[26] Log opened at 2024-10-18 10:18:50.836013
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] Log opened at 2024-10-18 10:18:50.870195
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-18 10:18:51.464922
+
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-10-18 10:18:51.887719
+
+[49] Log opened at 2024-10-18 10:18:51.914239
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] Log opened at 2024-10-18 10:18:51.977272
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] Log opened at 2024-10-18 10:18:51.978345
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-18 10:18:52.823215
+
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-10-18 10:18:53.532390
+
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-18 10:18:53.863007
+
+[53] Log opened at 2024-10-18 10:18:53.889577
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-18 10:18:54.976576
+
+[45] Log opened at 2024-10-18 10:19:08.277841
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-10-18 10:19:10.433038
+
+[45] Log opened at 2024-10-18 10:19:10.574251
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] Log opened at 2024-10-18 10:19:10.616551
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-10-18 10:19:11.203536
+
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[52] Log closed at 2024-10-18 10:19:11.617728
+
+[26] Log opened at 2024-10-18 10:19:11.725289
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] Log opened at 2024-10-18 10:19:11.746764
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] Log opened at 2024-10-18 10:19:11.748602
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-10-18 10:19:12.587955
+
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-18 10:19:13.308852
+
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-10-18 10:19:13.647775
+
+[55] Log opened at 2024-10-18 10:19:13.672065
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-10-18 10:19:14.755241
+
+[42] Log opened at 2024-10-18 10:19:45.245731
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-18 10:19:47.407906
+
+[42] Log opened at 2024-10-18 10:19:47.517341
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] Log opened at 2024-10-18 10:19:47.518604
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-18 10:19:48.145790
+
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-10-18 10:19:48.526352
+
+[44] Log opened at 2024-10-18 10:19:48.612019
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] Log opened at 2024-10-18 10:19:48.626372
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] Log opened at 2024-10-18 10:19:48.649401
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-18 10:19:49.451191
+
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[44] Log closed at 2024-10-18 10:19:50.168932
+
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] Log closed at 2024-10-18 10:19:50.508498
+
+[53] Log opened at 2024-10-18 10:19:50.537446
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-18 10:19:51.634690
+
+[49] Log opened at 2024-10-18 10:20:27.272021
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-10-18 10:20:29.383897
+
+[49] Log opened at 2024-10-18 10:20:29.484229
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] Log opened at 2024-10-18 10:20:29.486522
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-10-18 10:20:30.112479
+
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[52] Log closed at 2024-10-18 10:20:30.497246
+
+[52] Log opened at 2024-10-18 10:20:30.529160
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] Log opened at 2024-10-18 10:20:30.601868
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] Log opened at 2024-10-18 10:20:30.638947
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-10-18 10:20:31.427553
+
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[52] Log closed at 2024-10-18 10:20:32.128889
+
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-10-18 10:20:32.461197
+
+[54] Log opened at 2024-10-18 10:20:32.493144
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-10-18 10:20:33.567895
+
+[26] Log opened at 2024-10-18 10:20:57.753853
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-18 10:20:59.892234
+
+[26] Log opened at 2024-10-18 10:21:00.006785
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] Log opened at 2024-10-18 10:21:00.040807
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-18 10:21:00.636424
+
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[52] Log closed at 2024-10-18 10:21:01.051522
+
+[53] Log opened at 2024-10-18 10:21:01.140029
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] Log opened at 2024-10-18 10:21:01.155042
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] Log opened at 2024-10-18 10:21:01.159083
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-10-18 10:21:01.990567
+
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-18 10:21:02.709287
+
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-18 10:21:03.046484
+
+[49] Log opened at 2024-10-18 10:21:03.073775
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-10-18 10:21:04.165853
+
+[54] Log opened at 2024-10-18 10:21:23.000895
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-10-18 10:21:25.144014
+
+[54] Log opened at 2024-10-18 10:21:25.289207
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[57] Log opened at 2024-10-18 10:21:25.324293
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-10-18 10:21:25.919187
+
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-18 10:21:26.359561
+
+[53] Log opened at 2024-10-18 10:21:26.461777
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] Log opened at 2024-10-18 10:21:26.527679
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] Log opened at 2024-10-18 10:21:26.553300
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-18 10:21:27.364324
+
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-18 10:21:28.081105
+
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] Log closed at 2024-10-18 10:21:28.420311
+
+[26] Log opened at 2024-10-18 10:21:28.447408
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-18 10:21:29.539029
+
+[49] Log opened at 2024-10-18 10:22:54.326786
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-10-18 10:22:56.468213
+
+[49] Log opened at 2024-10-18 10:22:56.622801
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] Log opened at 2024-10-18 10:22:56.662495
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[49] Log closed at 2024-10-18 10:22:57.252060
+
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] Log closed at 2024-10-18 10:22:57.663269
+
+[55] Log opened at 2024-10-18 10:22:57.704048
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] Log opened at 2024-10-18 10:22:57.773906
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] Log opened at 2024-10-18 10:22:57.776057
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-18 10:22:58.612800
+
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-10-18 10:22:59.321868
+
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-10-18 10:22:59.664065
+
+[53] Log opened at 2024-10-18 10:22:59.693918
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-18 10:23:00.767583
+
+[57] Log opened at 2024-10-18 10:23:05.027810
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-18 10:23:07.199245
+
+[57] Log opened at 2024-10-18 10:23:07.363382
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] Log opened at 2024-10-18 10:23:07.397503
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-18 10:23:07.992098
+
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-10-18 10:23:08.407761
+
+[59] Log opened at 2024-10-18 10:23:08.433214
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] Log opened at 2024-10-18 10:23:08.494200
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] Log opened at 2024-10-18 10:23:08.496510
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-18 10:23:09.322433
+
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log closed at 2024-10-18 10:23:10.041480
+
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-18 10:23:10.376028
+
+[42] Log opened at 2024-10-18 10:23:10.399364
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-18 10:23:11.495683
+
+[56] Log opened at 2024-10-18 10:23:20.938958
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] Log closed at 2024-10-18 10:23:23.096569
+
+[56] Log opened at 2024-10-18 10:23:23.251996
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] Log opened at 2024-10-18 10:23:23.290952
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] Log closed at 2024-10-18 10:23:23.880378
+
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[55] Log closed at 2024-10-18 10:23:24.295325
+
+[54] Log opened at 2024-10-18 10:23:24.393344
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] Log opened at 2024-10-18 10:23:24.396852
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[57] Log opened at 2024-10-18 10:23:24.416841
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-18 10:23:25.241387
+
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-10-18 10:23:25.967077
+
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[57] Log closed at 2024-10-18 10:23:26.300795
+
+[53] Log opened at 2024-10-18 10:23:26.324911
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-18 10:23:27.418773
+
+[42] Log opened at 2024-10-18 10:23:32.748158
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-18 10:23:34.879817
+
+[42] Log opened at 2024-10-18 10:23:35.041939
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] Log opened at 2024-10-18 10:23:35.088198
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-18 10:23:35.670409
+
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[54] Log closed at 2024-10-18 10:23:36.105322
+
+[58] Log opened at 2024-10-18 10:23:36.187758
+[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58'
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] Log opened at 2024-10-18 10:23:36.266529
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] Log opened at 2024-10-18 10:23:36.267590
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-18 10:23:37.098596
+
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[58] Log closed at 2024-10-18 10:23:37.813724
+
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log closed at 2024-10-18 10:23:38.154508
+
+[60] Log opened at 2024-10-18 10:23:38.177971
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-18 10:23:39.268392
+
+[53] Log opened at 2024-10-18 10:24:00.807679
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-18 10:24:02.968931
+
+[53] Log opened at 2024-10-18 10:24:03.106020
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] Log opened at 2024-10-18 10:24:03.158239
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-18 10:24:03.738869
+
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-18 10:24:04.184433
+
+[56] Log opened at 2024-10-18 10:24:04.211485
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] Log opened at 2024-10-18 10:24:04.266220
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[61] Log opened at 2024-10-18 10:24:04.267458
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-18 10:24:05.094125
+
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] Log closed at 2024-10-18 10:24:05.810065
+
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[61] Log closed at 2024-10-18 10:24:06.143753
+
+[42] Log opened at 2024-10-18 10:24:06.171229
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-18 10:24:07.257162
+
+[60] Log opened at 2024-10-18 10:25:18.994949
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-18 10:25:21.134255
+
+[60] Log opened at 2024-10-18 10:25:21.281289
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] Log opened at 2024-10-18 10:25:21.319997
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-18 10:25:21.909834
+
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-18 10:25:22.331184
+
+[58] Log opened at 2024-10-18 10:25:22.361459
+[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58'
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] Log opened at 2024-10-18 10:25:22.431522
+[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62'
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] Log opened at 2024-10-18 10:25:22.440561
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[62] Log closed at 2024-10-18 10:25:23.264281
+
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[58] Log closed at 2024-10-18 10:25:23.982926
+
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] Log closed at 2024-10-18 10:25:24.322991
+
+[62] Log opened at 2024-10-18 10:25:24.351108
+[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62'
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[62] Log closed at 2024-10-18 10:25:25.428262
+
+[42] Log opened at 2024-10-18 10:25:36.906773
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-18 10:25:39.095409
+
+[42] Log opened at 2024-10-18 10:25:39.249295
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] Log opened at 2024-10-18 10:25:39.289344
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-18 10:25:39.879302
+
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-18 10:25:40.290110
+
+[60] Log opened at 2024-10-18 10:25:40.362983
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] Log opened at 2024-10-18 10:25:40.381293
+[53] Log opened at 2024-10-18 10:25:40.381293
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log closed at 2024-10-18 10:25:41.206856
+
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[60] Log closed at 2024-10-18 10:25:41.909241
+
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-18 10:25:42.242129
+
+[59] Log opened at 2024-10-18 10:25:42.264603
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log closed at 2024-10-18 10:25:43.344253
+
+[62] Log opened at 2024-10-18 10:27:40.316509
+[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62'
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[62] Log closed at 2024-10-18 10:27:42.441894
+
+[62] Log opened at 2024-10-18 10:27:42.642923
+[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62'
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] Log opened at 2024-10-18 10:27:42.679565
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[62] Log closed at 2024-10-18 10:27:43.271253
+
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-18 10:27:43.680595
+
+[42] Log opened at 2024-10-18 10:27:43.717611
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[61] Log opened at 2024-10-18 10:27:43.795262
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] Log opened at 2024-10-18 10:27:43.800584
+[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64'
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[61] Log closed at 2024-10-18 10:27:44.627350
+
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-18 10:27:45.344824
+
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[64] Log closed at 2024-10-18 10:27:45.679343
+
+[61] Log opened at 2024-10-18 10:27:45.702197
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[61] Log closed at 2024-10-18 10:27:46.788590
+
+[59] Log opened at 2024-10-18 10:28:13.570836
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log closed at 2024-10-18 10:28:15.765278
+
+[59] Log opened at 2024-10-18 10:28:15.873914
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] Log opened at 2024-10-18 10:28:15.917552
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log closed at 2024-10-18 10:28:16.502831
+
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-18 10:28:16.944504
+
+[62] Log opened at 2024-10-18 10:28:17.065354
+[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62'
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] Log opened at 2024-10-18 10:28:17.079235
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] Log opened at 2024-10-18 10:28:17.081831
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] Log closed at 2024-10-18 10:28:17.908517
+
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[62] Log closed at 2024-10-18 10:28:18.629489
+
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-18 10:28:18.970714
+
+[56] Log opened at 2024-10-18 10:28:18.994599
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] Log closed at 2024-10-18 10:28:20.072533
+
+[61] Log opened at 2024-10-18 10:29:09.258122
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[61] Log closed at 2024-10-18 10:29:11.388110
+
+[61] Log opened at 2024-10-18 10:29:11.538861
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] Log opened at 2024-10-18 10:29:11.578572
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[61] Log closed at 2024-10-18 10:29:12.167950
+
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[63] Log closed at 2024-10-18 10:29:12.599067
+
+[59] Log opened at 2024-10-18 10:29:12.630808
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] Log opened at 2024-10-18 10:29:12.694821
+[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62'
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] Log opened at 2024-10-18 10:29:12.727374
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[62] Log closed at 2024-10-18 10:29:13.525142
+
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[59] Log closed at 2024-10-18 10:29:14.229537
+
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-18 10:29:14.561588
+
+[62] Log opened at 2024-10-18 10:29:14.590105
+[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62'
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[62] Log closed at 2024-10-18 10:29:15.688856
+
+[65] Log opened at 2024-10-18 10:30:13.044127
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-18 10:30:15.208931
+
+[65] Log opened at 2024-10-18 10:30:15.415755
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] Log opened at 2024-10-18 10:30:15.450026
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-18 10:30:16.044894
+
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] Log closed at 2024-10-18 10:30:16.471404
+
+[64] Log opened at 2024-10-18 10:30:16.536705
+[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64'
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] Log opened at 2024-10-18 10:30:16.551976
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] Log opened at 2024-10-18 10:30:16.552326
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] Log closed at 2024-10-18 10:30:17.382947
+
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[64] Log closed at 2024-10-18 10:30:18.089703
+
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] Log closed at 2024-10-18 10:30:18.427976
+
+[56] Log opened at 2024-10-18 10:30:18.450181
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] Log closed at 2024-10-18 10:30:19.537245
+
+[66] Log opened at 2024-10-18 10:30:32.477010
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-18 10:30:34.655589
+
+[66] Log opened at 2024-10-18 10:30:34.791421
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] Log opened at 2024-10-18 10:30:34.825519
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-18 10:30:35.420453
+
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-18 10:30:35.829322
+
+[64] Log opened at 2024-10-18 10:30:35.858973
+[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64'
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] Log opened at 2024-10-18 10:30:35.918044
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] Log opened at 2024-10-18 10:30:35.918206
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] Log closed at 2024-10-18 10:30:36.746518
+
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[64] Log closed at 2024-10-18 10:30:37.450434
+
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-18 10:30:37.788932
+
+[68] Log opened at 2024-10-18 10:30:37.821113
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] Log closed at 2024-10-18 10:30:38.902134
+
+[67] Log opened at 2024-10-18 10:33:03.692529
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] Log closed at 2024-10-18 10:33:05.888221
+
+[67] Log opened at 2024-10-18 10:33:06.022363
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] Log opened at 2024-10-18 10:33:06.065675
+[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64'
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] Log closed at 2024-10-18 10:33:06.650981
+
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[64] Log closed at 2024-10-18 10:33:07.068096
+
+[66] Log opened at 2024-10-18 10:33:07.093069
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] Log opened at 2024-10-18 10:33:07.161682
+[56] Log opened at 2024-10-18 10:33:07.161682
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-18 10:33:07.992026
+
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-18 10:33:08.713845
+
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] Log closed at 2024-10-18 10:33:09.051671
+
+[53] Log opened at 2024-10-18 10:33:09.079973
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-18 10:33:10.163471
+
+[65] Log opened at 2024-10-18 10:33:22.539641
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-18 10:33:24.676990
+
+[65] Log opened at 2024-10-18 10:33:24.783697
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] Log opened at 2024-10-18 10:33:24.816948
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-18 10:33:25.412512
+
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] Log closed at 2024-10-18 10:33:25.835766
+
+[67] Log opened at 2024-10-18 10:33:25.860127
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] Log opened at 2024-10-18 10:33:25.907346
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] Log opened at 2024-10-18 10:33:25.928158
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-18 10:33:26.733137
+
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] Log closed at 2024-10-18 10:33:27.445977
+
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[70] Log closed at 2024-10-18 10:33:27.780703
+
+[66] Log opened at 2024-10-18 10:33:27.807067
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-18 10:33:28.908236
+
+[69] Log opened at 2024-10-18 10:33:42.263321
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] Log closed at 2024-10-18 10:33:44.394778
+
+[69] Log opened at 2024-10-18 10:33:44.549339
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] Log opened at 2024-10-18 10:33:44.582572
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] Log closed at 2024-10-18 10:33:45.178117
+
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[56] Log closed at 2024-10-18 10:33:45.596790
+
+[65] Log opened at 2024-10-18 10:33:45.627051
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] Log opened at 2024-10-18 10:33:45.682344
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] Log opened at 2024-10-18 10:33:45.685933
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-18 10:33:46.509771
+
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-18 10:33:47.215921
+
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] Log closed at 2024-10-18 10:33:47.553948
+
+[53] Log opened at 2024-10-18 10:33:47.578495
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-18 10:33:48.682566
+
+[68] Log opened at 2024-10-18 10:35:14.064668
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] Log closed at 2024-10-18 10:35:16.199365
+
+[68] Log opened at 2024-10-18 10:35:16.354360
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] Log opened at 2024-10-18 10:35:16.401209
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] Log closed at 2024-10-18 10:35:16.983480
+
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-18 10:35:17.405735
+
+[72] Log opened at 2024-10-18 10:35:17.550206
+[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72'
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] Log opened at 2024-10-18 10:35:17.554849
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] Log opened at 2024-10-18 10:35:17.554994
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[70] Log closed at 2024-10-18 10:35:18.391318
+
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-18 10:35:18.713519
+
+[70] Log opened at 2024-10-18 10:35:18.753984
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[72] Log closed at 2024-10-18 10:35:19.426814
+
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[70] Log closed at 2024-10-18 10:35:19.897745
+
+[71] Log opened at 2024-10-18 10:35:28.513127
+[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71'
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[71] Log closed at 2024-10-18 10:35:30.698611
+
+[71] Log opened at 2024-10-18 10:35:30.863834
+[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71'
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] Log opened at 2024-10-18 10:35:30.924997
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[71] Log closed at 2024-10-18 10:35:31.491968
+
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] Log closed at 2024-10-18 10:35:31.947613
+
+[53] Log opened at 2024-10-18 10:35:31.983368
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[73] Log opened at 2024-10-18 10:35:32.047467
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] Log opened at 2024-10-18 10:35:32.070532
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-18 10:35:32.880351
+
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-18 10:35:33.599397
+
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] Log closed at 2024-10-18 10:35:33.945826
+
+[73] Log opened at 2024-10-18 10:35:33.974719
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-18 10:35:35.074957
+
+[69] Log opened at 2024-10-18 10:35:40.145274
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] Log closed at 2024-10-18 10:35:42.320107
+
+[69] Log opened at 2024-10-18 10:35:42.459393
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] Log opened at 2024-10-18 10:35:42.499178
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] Log closed at 2024-10-18 10:35:43.088609
+
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-18 10:35:43.521613
+
+[70] Log opened at 2024-10-18 10:35:43.547490
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] Log opened at 2024-10-18 10:35:43.597035
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] Log opened at 2024-10-18 10:35:43.597249
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-18 10:35:44.435018
+
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[70] Log closed at 2024-10-18 10:35:45.139059
+
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-18 10:35:45.479961
+
+[53] Log opened at 2024-10-18 10:35:45.506767
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-18 10:35:46.597192
+
+[67] Log opened at 2024-10-18 10:35:54.730652
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] Log closed at 2024-10-18 10:35:56.856296
+
+[67] Log opened at 2024-10-18 10:35:56.989786
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[73] Log opened at 2024-10-18 10:35:57.029066
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] Log closed at 2024-10-18 10:35:57.618335
+
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[73] Log closed at 2024-10-18 10:35:58.036368
+
+[68] Log opened at 2024-10-18 10:35:58.068918
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] Log opened at 2024-10-18 10:35:58.123773
+[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72'
+[70] Log opened at 2024-10-18 10:35:58.123765
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[70] Log closed at 2024-10-18 10:35:58.953836
+
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] Log closed at 2024-10-18 10:35:59.680873
+
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[72] Log closed at 2024-10-18 10:36:00.022351
+
+[70] Log opened at 2024-10-18 10:36:00.045622
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[70] Log closed at 2024-10-18 10:36:01.132356
+
+[65] Log opened at 2024-10-18 10:36:14.607492
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-18 10:36:16.738396
+
+[65] Log opened at 2024-10-18 10:36:16.897908
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] Log opened at 2024-10-18 10:36:16.948483
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-18 10:36:17.528625
+
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-18 10:36:17.949396
+
+[67] Log opened at 2024-10-18 10:36:18.028537
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] Log opened at 2024-10-18 10:36:18.037665
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] Log opened at 2024-10-18 10:36:18.038065
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-18 10:36:18.868169
+
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] Log closed at 2024-10-18 10:36:19.572925
+
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] Log closed at 2024-10-18 10:36:19.911331
+
+[66] Log opened at 2024-10-18 10:36:19.937097
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-18 10:36:21.029022
+
+[69] Log opened at 2024-10-18 10:41:20.127052
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] Log closed at 2024-10-18 10:41:22.258121
+
+[69] Log opened at 2024-10-18 10:41:22.435680
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] Log opened at 2024-10-18 10:41:22.467916
+[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72'
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] Log closed at 2024-10-18 10:41:23.066429
+
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[72] Log closed at 2024-10-18 10:41:23.508898
+
+[76] Log opened at 2024-10-18 10:41:23.648271
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] Log opened at 2024-10-18 10:41:23.669438
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] Log opened at 2024-10-18 10:41:23.698386
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-18 10:41:24.511412
+
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-18 10:41:25.215507
+
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] Log closed at 2024-10-18 10:41:25.562283
+
+[65] Log opened at 2024-10-18 10:41:25.599222
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-18 10:41:26.698098
+
+[53] Log opened at 2024-10-18 10:41:49.168803
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-18 10:41:51.322496
+
+[53] Log opened at 2024-10-18 10:41:51.471290
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] Log opened at 2024-10-18 10:41:51.508831
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-18 10:41:52.099727
+
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-18 10:41:52.529317
+
+[68] Log opened at 2024-10-18 10:41:52.572530
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] Log opened at 2024-10-18 10:41:52.633506
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] Log opened at 2024-10-18 10:41:52.642878
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] Log closed at 2024-10-18 10:41:53.510722
+
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] Log closed at 2024-10-18 10:41:54.234696
+
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-18 10:41:54.569005
+
+[77] Log opened at 2024-10-18 10:41:54.597527
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] Log closed at 2024-10-18 10:41:55.706587
+
+[72] Log opened at 2024-10-18 10:42:13.681261
+[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72'
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[72] Log closed at 2024-10-18 10:42:21.465532
+
+[67] Log opened at 2024-10-18 10:45:47.154006
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_list -i 1
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_list -i 2
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_list -i 3
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_list -i 4
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1280
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- run -i 8
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- stack_get -i 9
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- eval -i 10 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_names -i 11 -d 0
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_get -i 12 -d 0 -c 0
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- run -i 13
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- stack_get -i 14
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- eval -i 15 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_names -i 16 -d 0
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_get -i 17 -d 0 -c 0
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- run -i 18
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- stack_get -i 19
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- eval -i 20 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_names -i 21 -d 0
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_get -i 22 -d 0 -c 0
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- run -i 23
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- stop -i 24
+[67] [Step Debug] ->
+
+[67] Log closed at 2024-10-18 10:46:00.769094
+
+[67] Log opened at 2024-10-18 10:46:03.433160
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_list -i 1
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_list -i 2
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_list -i 3
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_list -i 4
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1280
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- run -i 8
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- stack_get -i 9
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- eval -i 10 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_names -i 11 -d 0
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_get -i 12 -d 0 -c 0
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- run -i 13
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- stack_get -i 14
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- eval -i 15 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_names -i 16 -d 0
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_get -i 17 -d 0 -c 0
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- run -i 18
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- stack_get -i 19
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- eval -i 20 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_names -i 21 -d 0
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_get -i 22 -d 0 -c 0
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_get -i 23 -d 0 -c 1
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_get -i 24 -d 0 -c 2
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_list -i 25
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_remove -i 26 -d 670005
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 399
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1280
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- run -i 29
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- stack_get -i 30
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- stack_get -i 31
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- eval -i 32 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_names -i 33 -d 0
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_get -i 34 -d 0 -c 0
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- run -i 35
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- stop -i 36
+[67] [Step Debug] ->
+
+[67] Log closed at 2024-10-18 10:47:29.217556
+
+[65] Log opened at 2024-10-18 10:47:31.909373
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_list -i 1
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_list -i 2
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_list -i 3
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_list -i 4
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 399
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1280
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- run -i 9
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- stack_get -i 10
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- eval -i 11 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_names -i 12 -d 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_get -i 13 -d 0 -c 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- step_over -i 14
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- stack_get -i 15
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- eval -i 16 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_names -i 17 -d 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_get -i 18 -d 0 -c 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_get -i 19 -d 0 -c 1
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_get -i 20 -d 0 -c 2
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_list -i 21
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_remove -i 22 -d 650002
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_remove -i 23 -d 650003
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 399
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_list -i 25
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_remove -i 26 -d 650005
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 399
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1238
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- step_over -i 29
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- stack_get -i 30
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- eval -i 31 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_names -i 32 -d 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_get -i 33 -d 0 -c 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- run -i 34
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- stack_get -i 35
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- stack_get -i 36
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- eval -i 37 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_names -i 38 -d 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_get -i 39 -d 0 -c 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- step_over -i 40
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- stack_get -i 41
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- eval -i 42 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_names -i 43 -d 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_get -i 44 -d 0 -c 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_get -i 45 -d 0 -c 1
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_get -i 46 -d 0 -c 2
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_list -i 47
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_remove -i 48 -d 650006
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_remove -i 49 -d 650007
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 50 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 399
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_list -i 51
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_remove -i 52 -d 650008
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 53 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 399
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 54 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1280
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- run -i 55
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- stack_get -i 56
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- eval -i 57 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_names -i 58 -d 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_get -i 59 -d 0 -c 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- run -i 60
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- stack_get -i 61
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- eval -i 62 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_names -i 63 -d 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_get -i 64 -d 0 -c 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- run -i 65
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- stack_get -i 66
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- eval -i 67 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_names -i 68 -d 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_get -i 69 -d 0 -c 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- run -i 70
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- stop -i 71
+[65] [Step Debug] ->
+
+[65] Log closed at 2024-10-18 10:48:42.571508
+
+[78] Log opened at 2024-10-18 10:48:49.839402
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_list -i 1
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_list -i 2
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_list -i 3
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_list -i 4
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 399
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1280
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- run -i 9
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stack_get -i 10
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 11 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_names -i 12 -d 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_get -i 13 -d 0 -c 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- step_over -i 14
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stack_get -i 15
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stack_get -i 16
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 17 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_names -i 18 -d 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_get -i 19 -d 0 -c 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- run -i 20
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stack_get -i 21
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 22 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_names -i 23 -d 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_get -i 24 -d 0 -c 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 25 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 26 -- JHBlc29fZW52aW8=
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- run -i 27
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stack_get -i 28
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 29 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 30 -- JHBlc29fZW52aW8=
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_names -i 31 -d 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_get -i 32 -d 0 -c 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- run -i 33
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stack_get -i 34
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 35 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 36 -- JHBlc29fZW52aW8=
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_names -i 37 -d 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_get -i 38 -d 0 -c 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_get -i 39 -d 0 -c 1
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_get -i 40 -d 0 -c 2
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- step_over -i 41
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stack_get -i 42
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 43 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 44 -- JHBlc29fZW52aW8=
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_names -i 45 -d 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_get -i 46 -d 0 -c 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- property_get -i 47 -d 0 -c 0 -n "$data[0]"
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- step_over -i 48
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stack_get -i 49
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 50 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 51 -- JHBlc29fZW52aW8=
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_names -i 52 -d 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_get -i 53 -d 0 -c 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- run -i 54
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stack_get -i 55
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 56 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 57 -- JHBlc29fZW52aW8=
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_names -i 58 -d 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_get -i 59 -d 0 -c 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- run -i 60
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stop -i 61
+[78] [Step Debug] ->
+
+[78] Log closed at 2024-10-18 10:49:52.876447
+
+[68] Log opened at 2024-10-18 10:49:55.290431
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 1
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 2
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 3
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 4
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 399
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1280
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- run -i 9
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- stack_get -i 10
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 11 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 12 -- JHBlc29fZW52aW8=
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_names -i 13 -d 0
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_get -i 14 -d 0 -c 0
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 15
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_remove -i 16 -d 680002
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_remove -i 17 -d 680003
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1280
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_get -i 19 -d 0 -c 1
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_get -i 20 -d 0 -c 2
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 21
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_remove -i 22 -d 680005
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1289
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 24
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_remove -i 25 -d 680006
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1288
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- property_get -i 27 -d 0 -c 0 -n "$return_data[\"errors\"]"
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 28
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_remove -i 29 -d 680007
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1289
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 31
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_remove -i 32 -d 680008
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 33 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1292
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 34
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_remove -i 35 -d 680009
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 36 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1294
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- run -i 37
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- stop -i 38
+[68] [Step Debug] ->
+
+[68] Log closed at 2024-10-18 11:10:32.133741
+
+[53] Log opened at 2024-10-18 11:10:48.589953
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 1
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 2
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 3
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 4
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1294
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- run -i 8
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- stack_get -i 9
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- eval -i 10 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- eval -i 11 -- JHBlc29fZW52aW8=
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- context_names -i 12 -d 0
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- context_get -i 13 -d 0 -c 0
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- run -i 14
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- stack_get -i 15
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- stack_get -i 16
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- eval -i 17 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- eval -i 18 -- JHBlc29fZW52aW8=
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- context_names -i 19 -d 0
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- context_get -i 20 -d 0 -c 0
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- step_over -i 21
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- stack_get -i 22
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- eval -i 23 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- eval -i 24 -- JHBlc29fZW52aW8=
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- context_names -i 25 -d 0
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- context_get -i 26 -d 0 -c 0
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- run -i 27
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- stack_get -i 28
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- eval -i 29 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- eval -i 30 -- JHBlc29fZW52aW8=
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- context_names -i 31 -d 0
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- context_get -i 32 -d 0 -c 0
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- run -i 33
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- stop -i 34
+[53] [Step Debug] ->
+
+[53] Log closed at 2024-10-18 11:11:01.768430
+
+[66] Log opened at 2024-10-18 11:12:00.050258
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 1
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 2
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 3
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 4
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- run -i 8
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- stack_get -i 9
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- eval -i 10 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- eval -i 11 -- JHBlc29fZW52aW8=
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- context_names -i 12 -d 0
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- context_get -i 13 -d 0 -c 0
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- run -i 14
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- stack_get -i 15
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- eval -i 16 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- eval -i 17 -- JHBlc29fZW52aW8=
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- context_names -i 18 -d 0
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- context_get -i 19 -d 0 -c 0
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- run -i 20
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- stack_get -i 21
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- eval -i 22 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- eval -i 23 -- JHBlc29fZW52aW8=
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- context_names -i 24 -d 0
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- context_get -i 25 -d 0 -c 0
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- step_over -i 26
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- stack_get -i 27
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- stack_get -i 28
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- eval -i 29 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- eval -i 30 -- JHBlc29fZW52aW8=
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- context_names -i 31 -d 0
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- context_get -i 32 -d 0 -c 0
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- step_over -i 33
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- stack_get -i 34
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- eval -i 35 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- eval -i 36 -- JHBlc29fZW52aW8=
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- context_names -i 37 -d 0
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- context_get -i 38 -d 0 -c 0
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- run -i 39
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- stop -i 40
+[66] [Step Debug] ->
+
+[66] Log closed at 2024-10-18 11:12:17.518444
+
+[69] Log opened at 2024-10-18 11:12:38.550876
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- breakpoint_list -i 1
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- breakpoint_list -i 2
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- breakpoint_list -i 3
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- breakpoint_list -i 4
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- run -i 8
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- stack_get -i 9
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 10 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 11 -- JHBlc29fZW52aW8=
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_names -i 12 -d 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 13 -d 0 -c 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 14 -- JGRhdGFbMF0tPmNvc3Rl
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 15 -- JHBlc29fZW52aW8=
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_names -i 16 -d 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 17 -d 0 -c 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- step_over -i 18
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- stack_get -i 19
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- stack_get -i 20
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 21 -- JGRhdGFbMF0tPmNvc3Rl
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 22 -- JHBlc29fZW52aW8=
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_names -i 23 -d 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 24 -d 0 -c 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 25 -- JGNvc3Rl
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 26 -- JHBlc29fZW52aW8=
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_names -i 27 -d 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 28 -d 0 -c 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- run -i 29
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- stack_get -i 30
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 31 -- JGNvc3Rl
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 32 -- JHBlc29fZW52aW8=
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_names -i 33 -d 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 34 -d 0 -c 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- run -i 35
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- stack_get -i 36
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 37 -- JGNvc3Rl
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 38 -- JHBlc29fZW52aW8=
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_names -i 39 -d 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 40 -d 0 -c 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 41 -d 0 -c 1
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 42 -d 0 -c 2
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- step_over -i 43
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- stack_get -i 44
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 45 -- JGNvc3Rl
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 46 -- JHBlc29fZW52aW8=
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_names -i 47 -d 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 48 -d 0 -c 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- step_over -i 49
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- stack_get -i 50
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 51 -- JGNvc3Rl
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 52 -- JHBlc29fZW52aW8=
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_names -i 53 -d 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 54 -d 0 -c 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 55 -d 0 -c 1
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 56 -d 0 -c 2
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- step_over -i 57
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- stack_get -i 58
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 59 -- JGNvc3Rl
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 60 -- JHBlc29fZW52aW8=
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_names -i 61 -d 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 62 -d 0 -c 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 63 -d 0 -c 1
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 64 -d 0 -c 2
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- step_over -i 65
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- stack_get -i 66
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- stack_get -i 67
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 68 -- JGNvc3Rl
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 69 -- JHBlc29fZW52aW8=
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_names -i 70 -d 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 71 -d 0 -c 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- run -i 72
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- stack_get -i 73
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 74 -- JGNvc3Rl
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 75 -- JHBlc29fZW52aW8=
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_names -i 76 -d 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 77 -d 0 -c 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- run -i 78
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- stack_get -i 79
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 80 -- JGNvc3Rl
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 81 -- JHBlc29fZW52aW8=
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_names -i 82 -d 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 83 -d 0 -c 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- run -i 84
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- stop -i 85
+[69] [Step Debug] ->
+
+[69] Log closed at 2024-10-18 11:13:55.952133
+
+[76] Log opened at 2024-10-18 11:14:56.003690
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_list -i 1
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_list -i 2
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_list -i 3
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_list -i 4
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- run -i 8
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- stack_get -i 9
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- eval -i 10 -- JGNvc3Rl
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- eval -i 11 -- JHBlc29fZW52aW8=
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_names -i 12 -d 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_get -i 13 -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- run -i 14
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- stack_get -i 15
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- eval -i 16 -- JGNvc3Rl
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- eval -i 17 -- JHBlc29fZW52aW8=
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_names -i 18 -d 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_get -i 19 -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- run -i 20
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- stack_get -i 21
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- eval -i 22 -- JGNvc3Rl
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- eval -i 23 -- JHBlc29fZW52aW8=
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_names -i 24 -d 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_get -i 25 -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- run -i 26
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- stop -i 27
+[76] [Step Debug] ->
+
+[76] Log closed at 2024-10-18 11:15:06.805522
+
+[77] Log opened at 2024-10-18 11:15:12.818327
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 1
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 2
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 3
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 4
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- run -i 8
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- stack_get -i 9
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- eval -i 10 -- JGNvc3Rl
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- eval -i 11 -- JHBlc29fZW52aW8=
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- context_names -i 12 -d 0
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- context_get -i 13 -d 0 -c 0
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- run -i 14
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- stack_get -i 15
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- eval -i 16 -- JGNvc3Rl
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- eval -i 17 -- JHBlc29fZW52aW8=
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- context_names -i 18 -d 0
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- context_get -i 19 -d 0 -c 0
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- run -i 20
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- stack_get -i 21
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- eval -i 22 -- JGNvc3Rl
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- eval -i 23 -- JHBlc29fZW52aW8=
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- context_names -i 24 -d 0
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- context_get -i 25 -d 0 -c 0
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- step_over -i 26
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- stack_get -i 27
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- eval -i 28 -- JGNvc3Rl
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- eval -i 29 -- JHBlc29fZW52aW8=
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- context_names -i 30 -d 0
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- context_get -i 31 -d 0 -c 0
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- step_over -i 32
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- stack_get -i 33
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- eval -i 34 -- JGNvc3Rl
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- eval -i 35 -- JHBlc29fZW52aW8=
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- context_names -i 36 -d 0
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- context_get -i 37 -d 0 -c 0
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- step_over -i 38
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- stack_get -i 39
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- eval -i 40 -- JGNvc3Rl
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- eval -i 41 -- JHBlc29fZW52aW8=
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- context_names -i 42 -d 0
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- context_get -i 43 -d 0 -c 0
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- run -i 44
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- stop -i 45
+[77] [Step Debug] ->
+
+[77] Log closed at 2024-10-18 11:15:44.351717
+
+[72] Log opened at 2024-10-18 11:16:06.683615
+[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72'
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_list -i 1
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_list -i 2
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_list -i 3
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_list -i 4
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- run -i 8
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- stop -i 9
+[72] [Step Debug] ->
+
+[72] [Step Debug] ->
+
+[72] Log closed at 2024-10-18 11:16:12.691260
+
+[67] Log opened at 2024-10-18 11:16:18.999017
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] Log closed at 2024-10-18 11:16:26.363570
+
+[67] Log opened at 2024-10-18 11:16:30.008718
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] Log closed at 2024-10-18 11:16:36.700032
+
+[65] Log opened at 2024-10-18 11:16:59.304270
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-18 11:17:05.537353
+
+[78] Log opened at 2024-10-18 11:18:26.109810
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_list -i 1
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_list -i 2
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_list -i 3
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_list -i 4
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- run -i 9
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stack_get -i 10
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 11 -- JGNvc3Rl
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 12 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_names -i 13 -d 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_get -i 14 -d 0 -c 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 15 -- JGNvc3Rl
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 16 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 17 -- JHBlc28=
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_names -i 18 -d 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_get -i 19 -d 0 -c 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- run -i 20
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stack_get -i 21
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 22 -- JGNvc3Rl
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 23 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 24 -- JHBlc28=
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_names -i 25 -d 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_get -i 26 -d 0 -c 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- run -i 27
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stack_get -i 28
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 29 -- JGNvc3Rl
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 30 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 31 -- JHBlc28=
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_names -i 32 -d 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_get -i 33 -d 0 -c 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- run -i 34
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stop -i 35
+[78] [Step Debug] ->
+
+[78] Log closed at 2024-10-18 11:18:54.785793
+
+[68] Log opened at 2024-10-18 11:19:00.739233
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 1
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 2
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 3
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 4
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- run -i 9
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- stack_get -i 10
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 11 -- JGNvc3Rl
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 12 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 13 -- JHBlc28=
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_names -i 14 -d 0
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_get -i 15 -d 0 -c 0
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- run -i 16
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- stack_get -i 17
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 18 -- JGNvc3Rl
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 19 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 20 -- JHBlc28=
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_names -i 21 -d 0
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_get -i 22 -d 0 -c 0
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- run -i 23
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- stack_get -i 24
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 25 -- JGNvc3Rl
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 26 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 27 -- JHBlc28=
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_names -i 28 -d 0
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_get -i 29 -d 0 -c 0
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- run -i 30
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- stop -i 31
+[68] [Step Debug] ->
+
+[68] Log closed at 2024-10-18 11:19:27.736133
+
+[53] Log opened at 2024-10-18 11:19:33.106259
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 1
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 2
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 3
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 4
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- run -i 9
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- stop -i 10
+[53] [Step Debug] ->
+
+[53] Log closed at 2024-10-18 11:19:33.657045
+
+[66] Log opened at 2024-10-18 11:19:33.702152
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 1
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 2
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 3
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 4
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- run -i 9
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- stop -i 10
+[66] [Step Debug] ->
+
+[66] Log closed at 2024-10-18 11:19:33.799690
+
+[66] Log opened at 2024-10-18 11:19:33.919005
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] ->
+
+[77] Log opened at 2024-10-18 11:19:33.921167
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 1
+[66] [Step Debug] <- breakpoint_list -i 1
+[66] [Step Debug] ->
+
+[77] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 2
+[77] [Step Debug] <- breakpoint_list -i 2
+[66] [Step Debug] ->
+
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 3
+[77] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 3
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 4
+[66] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 4
+[77] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[77] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[66] [Step Debug] ->
+
+[77] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[66] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[77] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 9
+[66] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[66] [Step Debug] <- breakpoint_list -i 10
+[66] [Step Debug] ->
+
+[77] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 11
+[66] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[66] [Step Debug] <- breakpoint_list -i 12
+[66] [Step Debug] ->
+
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 9
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 10
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 11
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 12
+[77] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_remove -i 13 -d 660008
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_remove -i 14 -d 660009
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_remove -i 15 -d 660010
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_remove -i 16 -d 660011
+[66] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_remove -i 13 -d 770004
+[77] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[66] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_remove -i 14 -d 770005
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_remove -i 15 -d 770006
+[66] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[77] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_remove -i 16 -d 770007
+[66] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[77] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 20 -t exception -x *
+[66] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 20 -t exception -x *
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- run -i 21
+[66] [Step Debug] <- run -i 21
+[72] Log opened at 2024-10-18 11:19:33.983462
+[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72'
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_list -i 1
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_list -i 2
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_list -i 3
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_list -i 4
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[72] [Step Debug] ->
+
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 22
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 23
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 24
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 25
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- stop -i 26
+[77] [Step Debug] ->
+
+[77] Log closed at 2024-10-18 11:19:34.212822
+
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 22
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 23
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 24
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 25
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- stop -i 26
+[66] [Step Debug] ->
+
+[66] Log closed at 2024-10-18 11:19:34.647018
+
+[72] [Step Debug] <- stop -i 9
+[72] [Step Debug] ->
+
+[67] Log opened at 2024-10-18 11:19:43.926868
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] Log closed at 2024-10-18 11:19:44.954342
+
+[65] Log opened at 2024-10-18 11:19:54.037240
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-18 11:19:55.563797
+
+[65] Log opened at 2024-10-18 11:19:55.607699
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-18 11:19:56.238024
+
+[78] Log opened at 2024-10-18 11:19:56.303862
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] Log opened at 2024-10-18 11:19:56.320708
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] Log opened at 2024-10-18 11:19:56.359334
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] Log opened at 2024-10-18 11:19:56.369336
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] Log closed at 2024-10-18 11:19:57.121049
+
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-18 11:19:57.734803
+
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-18 11:19:58.152110
+
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] Log closed at 2024-10-18 11:19:58.564221
+
+[77] Log opened at 2024-10-18 11:20:16.402894
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] Log closed at 2024-10-18 11:20:17.444024
+
+[67] Log opened at 2024-10-18 11:21:18.520626
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] Log closed at 2024-10-18 11:21:26.298025
+
+[67] Log opened at 2024-10-18 11:21:30.093557
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] Log closed at 2024-10-18 11:21:36.826431
+
+[65] Log opened at 2024-10-18 11:33:09.128570
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-18 11:33:15.977984
+
+[76] Log opened at 2024-10-18 11:33:33.924887
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] Log opened at 2024-10-18 11:33:40.575091
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-18 11:33:41.230169
+
+[78] Log opened at 2024-10-18 11:33:42.892264
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log opened at 2024-10-18 11:33:44.126864
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] Log closed at 2024-10-18 11:33:47.582177
+
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-18 11:33:54.497296
+
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] Log closed at 2024-10-18 11:34:01.116945
+
+[67] Log opened at 2024-10-18 11:35:31.347463
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] Log closed at 2024-10-18 11:35:38.199172
+
+[79] Log opened at 2024-10-18 11:36:41.877572
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-18 11:36:42.911597
+
+[65] Log opened at 2024-10-18 11:36:59.518028
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-18 11:37:00.535064
+
+[68] Log opened at 2024-10-18 11:37:44.042645
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 1
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 2
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 3
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 4
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 5
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- run -i 11
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- stack_get -i 12
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 13 -- JGNvc3Rl
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 14 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 15 -- JHBlc28=
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_names -i 16 -d 0
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_get -i 17 -d 0 -c 0
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- step_over -i 18
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- stack_get -i 19
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 20 -- JGNvc3Rl
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 21 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 22 -- JHBlc28=
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_names -i 23 -d 0
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_get -i 24 -d 0 -c 0
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- step_over -i 25
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- stack_get -i 26
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 27 -- JGNvc3Rl
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 28 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 29 -- JHBlc28=
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_names -i 30 -d 0
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_get -i 31 -d 0 -c 0
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- run -i 32
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- stop -i 33
+[68] [Step Debug] ->
+
+[68] Log closed at 2024-10-18 11:38:00.544746
+
+[78] Log opened at 2024-10-18 11:39:34.624889
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_list -i 1
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_list -i 2
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_list -i 3
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_list -i 4
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_list -i 5
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- run -i 11
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stop -i 12
+[78] [Step Debug] ->
+
+[78] Log closed at 2024-10-18 11:39:36.354640
+
+[77] Log opened at 2024-10-18 11:39:36.463291
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] ->
+
+[66] Log opened at 2024-10-18 11:39:36.464785
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 1
+[66] [Step Debug] <- breakpoint_list -i 1
+[66] [Step Debug] ->
+
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 2
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 3
+[66] [Step Debug] <- breakpoint_list -i 2
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 4
+[77] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 5
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 6
+[77] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 3
+[77] [Step Debug] <- breakpoint_list -i 7
+[66] [Step Debug] ->
+
+[77] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 4
+[77] [Step Debug] <- breakpoint_list -i 8
+[66] [Step Debug] ->
+
+[77] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 5
+[77] [Step Debug] <- breakpoint_list -i 9
+[66] [Step Debug] ->
+
+[77] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 6
+[77] [Step Debug] <- breakpoint_list -i 10
+[66] [Step Debug] ->
+
+[77] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 7
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 8
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 9
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 10
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[77] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[77] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 15 -t exception -x *
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142
+[66] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 15 -t exception -x *
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[77] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 20 -t exception -x *
+[66] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 20 -t exception -x *
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- run -i 21
+[66] [Step Debug] <- run -i 21
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- stop -i 22
+[77] [Step Debug] ->
+
+[77] Log closed at 2024-10-18 11:39:36.551897
+
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- stop -i 22
+[66] [Step Debug] ->
+
+[66] Log closed at 2024-10-18 11:39:36.927900
+
+[66] Log opened at 2024-10-18 11:39:36.950611
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 1
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 2
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 3
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 4
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 5
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- run -i 11
+[53] Log opened at 2024-10-18 11:39:37.052593
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 1
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 2
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 3
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 4
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 5
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[53] [Step Debug] ->
+
+[68] Log opened at 2024-10-18 11:39:37.068998
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 1
+[68] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 11
+[53] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 2
+[68] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 12
+[68] [Step Debug] <- breakpoint_list -i 3
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 4
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 5
+[68] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 13
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 14
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 15
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_remove -i 16 -d 530008
+[53] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[68] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_remove -i 17 -d 530009
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_remove -i 18 -d 530010
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_remove -i 19 -d 530011
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_remove -i 20 -d 530012
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 25 -t exception -x *
+[53] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 12
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 13
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 14
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 15
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 16
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 17
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 18
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 19
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 20
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 21
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- stop -i 22
+[66] [Step Debug] ->
+
+[66] Log closed at 2024-10-18 11:39:37.638582
+
+[53] [Step Debug] <- stop -i 26
+[53] [Step Debug] ->
+
+[68] [Step Debug] <- stop -i 11
+[68] [Step Debug] ->
+
+[67] Log opened at 2024-10-18 11:39:49.837611
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] Log opened at 2024-10-18 11:39:49.838024
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] Log closed at 2024-10-18 11:39:50.694487
+
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] ->
+
+[79] [Step Debug] <- breakpoint_list -i 1
+[79] [Step Debug] ->
+
+[79] [Step Debug] <- breakpoint_list -i 2
+[79] [Step Debug] ->
+
+[79] [Step Debug] <- breakpoint_list -i 3
+[79] [Step Debug] ->
+
+[79] [Step Debug] <- breakpoint_list -i 4
+[79] [Step Debug] ->
+
+[79] [Step Debug] <- breakpoint_list -i 5
+[79] [Step Debug] ->
+
+[79] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142
+[79] [Step Debug] ->
+
+[79] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[79] [Step Debug] ->
+
+[79] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[79] [Step Debug] ->
+
+[79] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[79] [Step Debug] ->
+
+[79] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[79] [Step Debug] ->
+
+[79] [Step Debug] ->
+
+[79] Log closed at 2024-10-18 11:39:50.892137
+
+[67] Log opened at 2024-10-18 11:39:50.927996
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] Log closed at 2024-10-18 11:39:52.007439
+
+[69] Log opened at 2024-10-18 11:39:55.144752
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] Log closed at 2024-10-18 11:39:57.341144
+
+[69] Log opened at 2024-10-18 11:39:57.482315
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] Log opened at 2024-10-18 11:39:57.525035
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] Log closed at 2024-10-18 11:39:58.111428
+
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-18 11:39:58.552232
+
+[65] Log opened at 2024-10-18 11:39:58.582792
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] Log opened at 2024-10-18 11:39:58.653849
+[77] Log opened at 2024-10-18 11:39:58.653844
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] Log closed at 2024-10-18 11:39:59.491423
+
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] Log closed at 2024-10-18 11:40:00.107541
+
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-18 11:40:00.444679
+
+[78] Log opened at 2024-10-18 11:40:00.467591
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-18 11:40:01.560870
+
+[80] Log opened at 2024-10-18 11:40:45.291679
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+>>>>>>> dev/presu_cliente_v2
[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+<<<<<<< HEAD
[80] Log closed at 2024-10-18 12:26:29.645601
[81] Log opened at 2024-10-18 12:27:31.020113
@@ -29920,6 +50317,61 @@
[94] Log closed at 2024-10-18 12:27:34.179198
[82] Log opened at 2024-10-18 12:27:47.289813
+=======
+[80] Log closed at 2024-10-18 11:40:47.481169
+
+[81] Log opened at 2024-10-18 11:40:47.623808
+[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81'
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] Log opened at 2024-10-18 11:40:47.662199
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[81] Log closed at 2024-10-18 11:40:48.253978
+
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-18 11:40:48.663067
+
+[81] Log opened at 2024-10-18 11:40:48.739522
+[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81'
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] Log opened at 2024-10-18 11:40:48.762451
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[66] Log opened at 2024-10-18 11:40:48.762451
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] Log closed at 2024-10-18 11:40:49.592220
+
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[81] Log closed at 2024-10-18 11:40:50.182328
+
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-18 11:40:50.514117
+
+[82] Log opened at 2024-10-18 11:40:50.539446
+>>>>>>> dev/presu_cliente_v2
[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82'
[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
@@ -29927,6 +50379,7 @@
[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+<<<<<<< HEAD
[82] Log closed at 2024-10-18 12:27:48.304561
[82] Log opened at 2024-10-18 12:27:48.322262
@@ -29970,6 +50423,371 @@
[86] Log closed at 2024-10-18 12:29:00.442313
[86] Log opened at 2024-10-18 12:29:00.465363
+=======
+[82] Log closed at 2024-10-18 11:40:51.619754
+
+[78] Log opened at 2024-10-18 11:41:32.382403
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-18 11:41:34.562727
+
+[78] Log opened at 2024-10-18 11:41:34.702527
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] Log opened at 2024-10-18 11:41:34.739713
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-18 11:41:35.330857
+
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-18 11:41:35.742968
+
+[80] Log opened at 2024-10-18 11:41:35.848572
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] Log opened at 2024-10-18 11:41:35.868385
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] Log opened at 2024-10-18 11:41:35.871870
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] Log closed at 2024-10-18 11:41:36.692170
+
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] Log closed at 2024-10-18 11:41:37.279288
+
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] Log closed at 2024-10-18 11:41:37.609687
+
+[79] Log opened at 2024-10-18 11:41:37.636279
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-18 11:41:38.717621
+
+[66] Log opened at 2024-10-18 11:41:59.202602
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-18 11:42:01.367002
+
+[66] Log opened at 2024-10-18 11:42:01.471005
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[82] Log opened at 2024-10-18 11:42:01.473845
+[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82'
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-18 11:42:02.101736
+
+[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[82] Log closed at 2024-10-18 11:42:02.473271
+
+[82] Log opened at 2024-10-18 11:42:02.512778
+[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82'
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] Log opened at 2024-10-18 11:42:02.598922
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] Log opened at 2024-10-18 11:42:02.609987
+[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84'
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-18 11:42:03.429742
+
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[82] Log closed at 2024-10-18 11:42:04.020552
+
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] Log closed at 2024-10-18 11:42:04.353419
+
+[76] Log opened at 2024-10-18 11:42:04.376797
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-18 11:42:05.463093
+
+[80] Log opened at 2024-10-18 11:46:35.343417
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] Log closed at 2024-10-18 11:46:37.510431
+
+[80] Log opened at 2024-10-18 11:46:37.664674
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[83] Log opened at 2024-10-18 11:46:37.710663
+[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83'
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] Log closed at 2024-10-18 11:46:38.293460
+
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[83] Log closed at 2024-10-18 11:46:38.746925
+
+[77] Log opened at 2024-10-18 11:46:38.774793
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] Log opened at 2024-10-18 11:46:38.849479
+[66] Log opened at 2024-10-18 11:46:38.849478
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] Log closed at 2024-10-18 11:46:39.676427
+
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] Log closed at 2024-10-18 11:46:40.290362
+
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-18 11:46:40.621247
+
+[77] Log opened at 2024-10-18 11:46:44.525265
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] Log closed at 2024-10-18 11:46:45.628167
+
+[76] Log opened at 2024-10-18 11:47:27.456516
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-18 11:47:29.639893
+
+[76] Log opened at 2024-10-18 11:47:29.787564
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] Log opened at 2024-10-18 11:47:29.838007
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-18 11:47:30.416949
+
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] Log closed at 2024-10-18 11:47:30.859620
+
+[69] Log opened at 2024-10-18 11:47:30.887185
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] Log opened at 2024-10-18 11:47:30.958377
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[83] Log opened at 2024-10-18 11:47:30.958653
+[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83'
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-18 11:47:31.795095
+
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] Log closed at 2024-10-18 11:47:32.387860
+
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[83] Log closed at 2024-10-18 11:47:32.744422
+
+[80] Log opened at 2024-10-18 11:47:32.770923
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] Log closed at 2024-10-18 11:47:33.867222
+
+[78] Log opened at 2024-10-18 11:47:51.662518
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-18 11:47:59.031554
+
+[78] Log opened at 2024-10-18 11:48:01.600542
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-18 11:48:02.614741
+
+[84] Log opened at 2024-10-18 11:49:59.385030
+[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84'
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] Log closed at 2024-10-18 11:50:01.542703
+
+[84] Log opened at 2024-10-18 11:50:01.714512
+[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84'
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] Log opened at 2024-10-18 11:50:01.755353
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] Log closed at 2024-10-18 11:50:02.343098
+
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] Log closed at 2024-10-18 11:50:02.763873
+
+[86] Log opened at 2024-10-18 11:50:02.788986
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] Log opened at 2024-10-18 11:50:02.875568
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[76] Log opened at 2024-10-18 11:50:02.875568
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-18 11:50:03.699016
+
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] Log closed at 2024-10-18 11:50:04.357334
+
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-18 11:50:04.694696
+
+[86] Log opened at 2024-10-18 11:50:04.720438
+>>>>>>> dev/presu_cliente_v2
[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
@@ -29977,6 +50795,7 @@
[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+<<<<<<< HEAD
[86] Log closed at 2024-10-18 12:29:01.096765
[95] Log opened at 2024-10-18 12:29:01.169535
@@ -29986,11 +50805,57 @@
[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+=======
+[86] Log closed at 2024-10-18 11:50:05.820319
+
+[80] Log opened at 2024-10-18 11:50:26.868874
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] Log closed at 2024-10-18 11:50:28.998871
+
+[80] Log opened at 2024-10-18 11:50:29.145068
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] Log opened at 2024-10-18 11:50:29.176386
+[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84'
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] Log closed at 2024-10-18 11:50:29.773376
+
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] Log closed at 2024-10-18 11:50:30.189424
+
+[85] Log opened at 2024-10-18 11:50:30.264305
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] Log opened at 2024-10-18 11:50:30.280189
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] Log opened at 2024-10-18 11:50:30.280371
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+>>>>>>> dev/presu_cliente_v2
[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+<<<<<<< HEAD
[87] Log closed at 2024-10-18 12:29:01.942304
[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
@@ -30146,11 +51011,501 @@
[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+=======
+[87] Log closed at 2024-10-18 11:50:31.111084
+
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] Log closed at 2024-10-18 11:50:31.724110
+
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] Log closed at 2024-10-18 11:50:32.057250
+
+[78] Log opened at 2024-10-18 11:50:32.080481
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-18 11:50:33.233483
+
+[79] Log opened at 2024-10-18 11:50:51.645312
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log opened at 2024-10-18 11:50:53.976401
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-18 11:50:59.527669
+
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-18 11:51:00.082729
+
+[86] Log opened at 2024-10-18 11:51:40.831796
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[88] Log opened at 2024-10-18 11:51:42.087312
+[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88'
+[88] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] Log opened at 2024-10-18 11:51:43.060967
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] Log opened at 2024-10-18 11:51:45.363738
+[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84'
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] Log closed at 2024-10-18 11:51:48.741608
+
+[88] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[88] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[88] Log closed at 2024-10-18 11:51:56.457719
+
+[87] Log opened at 2024-10-18 11:51:58.129287
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] Log closed at 2024-10-18 11:52:02.923946
+
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] Log closed at 2024-10-18 11:52:10.947760
+
+[85] Log opened at 2024-10-18 11:52:13.761758
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-18 11:52:17.667124
+
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] Log closed at 2024-10-18 11:52:19.205818
+
+[85] Log opened at 2024-10-18 11:52:19.325564
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] Log opened at 2024-10-18 11:52:19.326515
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] Log closed at 2024-10-18 11:52:19.957157
+
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] Log closed at 2024-10-18 11:52:20.333952
+
+[77] Log opened at 2024-10-18 11:52:20.436338
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] Log opened at 2024-10-18 11:52:20.439108
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] Log opened at 2024-10-18 11:52:20.439107
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-18 11:52:21.274131
+
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] Log closed at 2024-10-18 11:52:21.894011
+
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-18 11:52:22.232136
+
+[87] Log opened at 2024-10-18 11:52:22.259037
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-18 11:52:23.336657
+
+[86] Log opened at 2024-10-18 11:53:39.842472
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] Log closed at 2024-10-18 11:53:42.036461
+
+[86] Log opened at 2024-10-18 11:53:42.211577
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] Log opened at 2024-10-18 11:53:42.253311
+[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84'
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] Log closed at 2024-10-18 11:53:42.840110
+
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] Log closed at 2024-10-18 11:53:43.269328
+
+[85] Log opened at 2024-10-18 11:53:43.464133
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[88] Log opened at 2024-10-18 11:53:43.473359
+[79] Log opened at 2024-10-18 11:53:43.473359
+[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88'
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[88] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[88] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[88] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[88] Log closed at 2024-10-18 11:53:44.306159
+
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-18 11:53:44.633493
+
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] Log closed at 2024-10-18 11:53:45.271173
+
+[87] Log opened at 2024-10-18 11:54:52.800361
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-18 11:54:54.945702
+
+[87] Log opened at 2024-10-18 11:54:55.085950
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] Log opened at 2024-10-18 11:54:55.128690
+[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84'
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-18 11:54:55.714786
+
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] Log closed at 2024-10-18 11:54:56.136954
+
+[80] Log opened at 2024-10-18 11:54:56.170495
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] Log opened at 2024-10-18 11:54:56.253397
+[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84'
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[89] Log opened at 2024-10-18 11:54:56.253619
+[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89'
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[89] Log closed at 2024-10-18 11:54:57.087202
+
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] Log closed at 2024-10-18 11:54:57.710797
+
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] Log closed at 2024-10-18 11:54:58.076503
+
+[85] Log opened at 2024-10-18 11:57:41.883729
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] Log closed at 2024-10-18 11:57:44.067041
+
+[85] Log opened at 2024-10-18 11:57:44.260601
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] Log opened at 2024-10-18 11:57:44.295353
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] Log closed at 2024-10-18 11:57:44.889314
+
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] Log closed at 2024-10-18 11:57:45.296208
+
+[76] Log opened at 2024-10-18 11:57:45.328479
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] Log opened at 2024-10-18 11:57:45.419913
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[90] Log opened at 2024-10-18 11:57:45.420142
+[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90'
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-18 11:57:46.251175
+
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] Log closed at 2024-10-18 11:57:46.838239
+
+[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[90] Log closed at 2024-10-18 11:57:47.178620
+
+[78] Log opened at 2024-10-18 11:57:47.210663
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-18 11:57:48.282707
+
+[84] Log opened at 2024-10-18 11:58:12.650487
+[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84'
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] Log closed at 2024-10-18 11:58:14.790393
+
+[84] Log opened at 2024-10-18 11:58:14.914445
+[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84'
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] Log opened at 2024-10-18 11:58:14.961127
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] Log closed at 2024-10-18 11:58:15.543369
+
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-18 11:58:15.964629
+
+[91] Log opened at 2024-10-18 11:58:15.998121
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] Log opened at 2024-10-18 11:58:16.075503
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] Log opened at 2024-10-18 11:58:16.078866
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-18 11:58:16.902323
+
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] Log closed at 2024-10-18 11:58:17.509179
+
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] Log closed at 2024-10-18 11:58:17.847130
+
+[79] Log opened at 2024-10-18 11:58:17.878777
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-18 11:58:18.973939
+
+[78] Log opened at 2024-10-18 11:58:40.408317
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-18 11:58:42.559993
+
+[78] Log opened at 2024-10-18 11:58:42.705915
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] Log opened at 2024-10-18 11:58:42.747143
+[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84'
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-18 11:58:43.335024
+
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[84] Log closed at 2024-10-18 11:58:43.754738
+
+[86] Log opened at 2024-10-18 11:58:43.781660
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] Log opened at 2024-10-18 11:58:43.863455
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] Log opened at 2024-10-18 11:58:43.863831
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-18 11:58:44.687789
+
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] Log closed at 2024-10-18 11:58:45.275573
+
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-18 11:58:45.698726
+
+[80] Log opened at 2024-10-18 11:58:45.731208
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+>>>>>>> dev/presu_cliente_v2
[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+<<<<<<< HEAD
[80] Log closed at 2024-10-18 12:29:57.375835
[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
@@ -30160,6 +51515,81 @@
[86] Log closed at 2024-10-18 12:29:58.003606
[86] Log opened at 2024-10-18 12:30:02.680985
+=======
+[80] Log closed at 2024-10-18 11:58:46.833021
+
+[91] Log opened at 2024-10-18 11:58:50.306260
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] Log closed at 2024-10-18 11:58:52.424471
+
+[91] Log opened at 2024-10-18 11:58:52.551625
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] Log opened at 2024-10-18 11:58:52.599572
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] Log closed at 2024-10-18 11:58:53.180080
+
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-18 11:58:53.680952
+
+[93] Log opened at 2024-10-18 11:58:53.707193
+[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93'
+[93] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] Log opened at 2024-10-18 11:58:53.784800
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[90] Log opened at 2024-10-18 11:58:53.791247
+[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90'
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] Log closed at 2024-10-18 11:58:54.611157
+
+[93] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[93] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[93] Log closed at 2024-10-18 11:58:55.223484
+
+[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[90] Log closed at 2024-10-18 11:58:55.562550
+
+[79] Log opened at 2024-10-18 11:58:55.591101
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-18 11:58:56.716293
+
+[86] Log opened at 2024-10-18 11:59:15.360991
+>>>>>>> dev/presu_cliente_v2
[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
@@ -30167,6 +51597,7 @@
[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+<<<<<<< HEAD
[86] Log closed at 2024-10-18 12:30:03.726548
[86] Log opened at 2024-10-18 12:30:03.750137
@@ -30187,16 +51618,142 @@
[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+=======
+[86] Log closed at 2024-10-18 11:59:17.515575
+
+[86] Log opened at 2024-10-18 11:59:17.641350
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] Log opened at 2024-10-18 11:59:17.676927
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] Log closed at 2024-10-18 11:59:18.269953
+
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] Log closed at 2024-10-18 11:59:18.679191
+
+[78] Log opened at 2024-10-18 11:59:18.782733
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] Log opened at 2024-10-18 11:59:18.794568
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] Log opened at 2024-10-18 11:59:18.794998
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] Log closed at 2024-10-18 11:59:19.627448
+
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] Log closed at 2024-10-18 11:59:20.242741
+
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] Log closed at 2024-10-18 11:59:20.581067
+
+[80] Log opened at 2024-10-18 11:59:20.606930
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] Log closed at 2024-10-18 11:59:21.688838
+
+[79] Log opened at 2024-10-18 11:59:29.377784
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-18 11:59:31.551365
+
+[79] Log opened at 2024-10-18 11:59:31.660873
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] Log opened at 2024-10-18 11:59:31.705019
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-18 11:59:32.290339
+
+>>>>>>> dev/presu_cliente_v2
[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+<<<<<<< HEAD
[87] Log closed at 2024-10-18 12:30:05.223824
+=======
+[87] Log closed at 2024-10-18 11:59:32.735244
+
+[85] Log opened at 2024-10-18 11:59:32.759390
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] Log opened at 2024-10-18 11:59:32.837564
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] Log opened at 2024-10-18 11:59:32.837821
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-18 11:59:33.667711
+
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[85] Log closed at 2024-10-18 11:59:34.270934
+
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-18 11:59:34.609577
+
+[86] Log opened at 2024-10-18 11:59:34.639063
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+>>>>>>> dev/presu_cliente_v2
[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+<<<<<<< HEAD
[86] Log closed at 2024-10-18 12:30:05.861965
[95] Log opened at 2024-10-18 12:47:00.852896
@@ -30226,11 +51783,59 @@
[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+=======
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] Log closed at 2024-10-18 11:59:35.741066
+
+[80] Log opened at 2024-10-18 12:00:01.051153
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] Log closed at 2024-10-18 12:00:03.206642
+
+[80] Log opened at 2024-10-18 12:00:03.352082
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] Log opened at 2024-10-18 12:00:03.381172
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] Log closed at 2024-10-18 12:00:03.981647
+
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-18 12:00:04.410410
+
+[79] Log opened at 2024-10-18 12:00:04.435121
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[90] Log opened at 2024-10-18 12:00:04.516976
+[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90'
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] Log opened at 2024-10-18 12:00:04.517188
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+>>>>>>> dev/presu_cliente_v2
[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+<<<<<<< HEAD
[95] Log closed at 2024-10-18 12:47:03.386693
[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
@@ -30313,10 +51918,31 @@
[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[94] Log closed at 2024-10-18 12:59:32.877463
+=======
+[95] Log closed at 2024-10-18 12:00:05.347025
+
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] Log closed at 2024-10-18 12:00:05.956290
+
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[90] Log closed at 2024-10-18 12:00:06.395865
+
+[87] Log opened at 2024-10-18 12:00:06.426666
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+>>>>>>> dev/presu_cliente_v2
[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+<<<<<<< HEAD
[87] Log closed at 2024-10-18 12:59:33.488061
[29] Log opened at 2024-10-18 13:00:31.738210
@@ -30479,10 +52105,57 @@
[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+=======
+[87] Log closed at 2024-10-18 12:00:07.559993
+
+[86] Log opened at 2024-10-18 12:01:08.258525
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] Log closed at 2024-10-18 12:01:10.379933
+
+[86] Log opened at 2024-10-18 12:01:10.543779
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] Log opened at 2024-10-18 12:01:10.579084
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] Log closed at 2024-10-18 12:01:11.171840
+
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] Log closed at 2024-10-18 12:01:11.581478
+
+[80] Log opened at 2024-10-18 12:01:11.606442
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] Log opened at 2024-10-18 12:01:11.682306
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[96] Log opened at 2024-10-18 12:01:11.683118
+[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96'
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+>>>>>>> dev/presu_cliente_v2
[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+<<<<<<< HEAD
[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[95] Log closed at 2024-10-18 13:01:50.996112
@@ -30524,19 +52197,139 @@
[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[86] Log closed at 2024-10-18 13:02:15.875245
+=======
+[95] Log closed at 2024-10-18 12:01:12.508014
+
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[80] Log closed at 2024-10-18 12:01:13.097316
+
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[96] Log closed at 2024-10-18 12:01:13.436437
+
+[91] Log opened at 2024-10-18 12:01:13.463824
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] Log closed at 2024-10-18 12:01:14.540646
+
+[87] Log opened at 2024-10-18 12:02:55.734318
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-18 12:02:57.902921
+
+[87] Log opened at 2024-10-18 12:02:58.057728
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] Log opened at 2024-10-18 12:02:58.099708
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-18 12:02:58.686877
+
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] Log closed at 2024-10-18 12:02:59.119699
+
+[97] Log opened at 2024-10-18 12:02:59.146766
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] Log opened at 2024-10-18 12:02:59.241873
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[86] Log opened at 2024-10-18 12:02:59.241873
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-18 12:03:00.068834
+>>>>>>> dev/presu_cliente_v2
[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+<<<<<<< HEAD
[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[97] Log closed at 2024-10-18 13:02:16.499767
[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+=======
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[97] Log closed at 2024-10-18 12:03:00.675631
+
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] Log closed at 2024-10-18 12:03:01.014618
+
+[92] Log opened at 2024-10-18 12:03:01.047788
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-18 12:03:02.127625
+
+[91] Log opened at 2024-10-18 12:03:40.504790
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] Log closed at 2024-10-18 12:03:42.671141
+
+[91] Log opened at 2024-10-18 12:03:42.821081
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] Log opened at 2024-10-18 12:03:42.860119
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] Log closed at 2024-10-18 12:03:43.451860
+
+>>>>>>> dev/presu_cliente_v2
[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+<<<<<<< HEAD
[87] Log closed at 2024-10-18 13:02:16.965472
[28] Log opened at 2024-10-18 13:02:37.989701
@@ -30590,6 +52383,121 @@
[28] Log closed at 2024-10-18 13:02:41.521088
[98] Log opened at 2024-10-18 13:15:24.066338
+=======
+[87] Log closed at 2024-10-18 12:03:43.867632
+
+[94] Log opened at 2024-10-18 12:03:43.894781
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] Log opened at 2024-10-18 12:03:43.975660
+[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98'
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] Log opened at 2024-10-18 12:03:43.978130
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[98] Log closed at 2024-10-18 12:03:44.805548
+
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-18 12:03:45.395630
+
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[95] Log closed at 2024-10-18 12:03:45.733866
+
+[90] Log opened at 2024-10-18 12:03:45.767060
+[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90'
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[90] Log closed at 2024-10-18 12:03:46.864799
+
+[97] Log opened at 2024-10-18 12:03:48.830766
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[97] Log closed at 2024-10-18 12:03:50.943204
+
+[97] Log opened at 2024-10-18 12:03:51.097724
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] Log opened at 2024-10-18 12:03:51.155988
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[97] Log closed at 2024-10-18 12:03:51.726421
+
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-18 12:03:52.161907
+
+[91] Log opened at 2024-10-18 12:03:52.242267
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[96] Log opened at 2024-10-18 12:03:52.264343
+[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96'
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[99] Log opened at 2024-10-18 12:03:52.268070
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[96] Log closed at 2024-10-18 12:03:53.091812
+
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] Log closed at 2024-10-18 12:03:53.680586
+
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[99] Log closed at 2024-10-18 12:03:54.019593
+
+[86] Log opened at 2024-10-18 12:03:54.052147
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] Log closed at 2024-10-18 12:03:55.128458
+
+[98] Log opened at 2024-10-18 12:04:08.001077
+>>>>>>> dev/presu_cliente_v2
[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98'
[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
@@ -30597,9 +52505,85 @@
[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+<<<<<<< HEAD
[98] Log closed at 2024-10-18 13:15:25.093922
[98] Log opened at 2024-10-18 13:15:25.128185
+=======
+[98] Log closed at 2024-10-18 12:04:15.339748
+
+[95] Log opened at 2024-10-18 12:04:56.159764
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[95] Log closed at 2024-10-18 12:04:58.281412
+
+[95] Log opened at 2024-10-18 12:04:58.426905
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[96] Log opened at 2024-10-18 12:04:58.463128
+[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96'
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[95] Log closed at 2024-10-18 12:04:59.057136
+
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[96] Log closed at 2024-10-18 12:04:59.482896
+
+[97] Log opened at 2024-10-18 12:04:59.510612
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] Log opened at 2024-10-18 12:04:59.598536
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] Log opened at 2024-10-18 12:04:59.602930
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-18 12:05:00.429807
+
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[97] Log closed at 2024-10-18 12:05:01.053114
+
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] Log closed at 2024-10-18 12:05:01.392068
+
+[92] Log opened at 2024-10-18 12:05:01.420798
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-18 12:05:02.504767
+
+[98] Log opened at 2024-10-18 12:07:54.887662
+>>>>>>> dev/presu_cliente_v2
[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98'
[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
@@ -30607,6 +52591,7 @@
[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+<<<<<<< HEAD
[98] Log closed at 2024-10-18 13:15:25.756565
[81] Log opened at 2024-10-18 13:15:25.828847
@@ -30653,10 +52638,117 @@
[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+=======
+[98] Log closed at 2024-10-18 12:07:57.055475
+
+[98] Log opened at 2024-10-18 12:07:57.203271
+[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98'
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[96] Log opened at 2024-10-18 12:07:57.243404
+[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96'
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[98] Log closed at 2024-10-18 12:07:57.831726
+
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[96] Log closed at 2024-10-18 12:07:58.244350
+
+[95] Log opened at 2024-10-18 12:07:58.270642
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] Log opened at 2024-10-18 12:07:58.348099
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[100] Log opened at 2024-10-18 12:07:58.348771
+[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100'
+[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-18 12:07:59.174528
+
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[95] Log closed at 2024-10-18 12:07:59.763970
+
+[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[100] Log closed at 2024-10-18 12:08:00.102757
+
+[87] Log opened at 2024-10-18 12:08:00.129530
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-18 12:08:01.210218
+
+[97] Log opened at 2024-10-18 12:08:05.845270
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[97] Log closed at 2024-10-18 12:08:08.007924
+
+[97] Log opened at 2024-10-18 12:08:08.131888
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] Log opened at 2024-10-18 12:08:08.167212
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[97] Log closed at 2024-10-18 12:08:08.760196
+
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] Log closed at 2024-10-18 12:08:09.186702
+
+[92] Log opened at 2024-10-18 12:08:09.212499
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] Log opened at 2024-10-18 12:08:09.286909
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[101] Log opened at 2024-10-18 12:08:09.295776
+[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101'
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+>>>>>>> dev/presu_cliente_v2
[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+<<<<<<< HEAD
[86] Log closed at 2024-10-18 13:16:06.639614
[87] Log opened at 2024-10-18 13:16:06.726879
@@ -30750,6 +52842,103 @@
[86] Log closed at 2024-10-18 13:17:15.002769
[86] Log opened at 2024-10-18 13:17:15.030279
+=======
+[86] Log closed at 2024-10-18 12:08:10.114502
+
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-18 12:08:10.703460
+
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[101] Log closed at 2024-10-18 12:08:11.034276
+
+[98] Log opened at 2024-10-18 12:08:11.069178
+[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98'
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[98] Log closed at 2024-10-18 12:08:12.164762
+
+[94] Log opened at 2024-10-18 12:08:32.232209
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-18 12:08:39.583334
+
+[95] Log opened at 2024-10-18 12:08:46.099046
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[95] Log closed at 2024-10-18 12:08:49.664959
+
+[100] Log opened at 2024-10-18 12:08:51.217769
+[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100'
+[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[100] Log closed at 2024-10-18 12:08:59.762289
+
+[100] Log opened at 2024-10-18 12:09:01.029571
+[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100'
+[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[100] Log closed at 2024-10-18 12:09:10.139833
+
+[87] Log opened at 2024-10-18 12:09:36.976840
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-18 12:09:45.858566
+
+[87] Log opened at 2024-10-18 12:09:47.961084
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-18 12:09:57.350019
+
+[97] Log opened at 2024-10-18 12:10:07.100046
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[97] Log closed at 2024-10-18 12:10:10.811708
+
+[86] Log opened at 2024-10-18 12:10:51.016244
+>>>>>>> dev/presu_cliente_v2
[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
@@ -30757,6 +52946,7 @@
[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+<<<<<<< HEAD
[86] Log closed at 2024-10-18 13:17:15.662952
[95] Log opened at 2024-10-18 13:17:15.731868
@@ -30852,6 +53042,50 @@
[24] Log closed at 2024-10-18 13:19:05.147284
[94] Log opened at 2024-10-18 13:19:05.167446
+=======
+[86] Log closed at 2024-10-18 12:11:00.497763
+
+[92] Log opened at 2024-10-18 12:11:42.597097
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-18 12:11:52.250893
+
+[101] Log opened at 2024-10-18 12:12:15.654666
+[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101'
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[101] Log closed at 2024-10-18 12:12:19.252477
+
+[98] Log opened at 2024-10-18 12:12:23.077255
+[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98'
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[98] Log closed at 2024-10-18 12:12:32.523213
+
+[98] Log opened at 2024-10-18 12:12:35.447469
+[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98'
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[98] Log closed at 2024-10-18 12:12:44.891672
+
+[94] Log opened at 2024-10-18 12:12:50.148120
[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
@@ -30859,6 +53093,98 @@
[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-18 12:12:53.863795
+
+[95] Log opened at 2024-10-18 12:13:22.923866
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[95] Log closed at 2024-10-18 12:13:31.900508
+
+[87] Log opened at 2024-10-18 12:13:38.943340
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-18 12:13:41.124910
+
+[87] Log opened at 2024-10-18 12:13:41.236912
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] Log opened at 2024-10-18 12:13:41.288023
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] Log closed at 2024-10-18 12:13:41.868724
+
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[97] Log closed at 2024-10-18 12:13:42.289880
+
+[101] Log opened at 2024-10-18 12:13:42.315544
+[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101'
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] Log opened at 2024-10-18 12:13:42.387296
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] Log opened at 2024-10-18 12:13:42.397860
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[86] Log closed at 2024-10-18 12:13:43.225110
+
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[101] Log closed at 2024-10-18 12:13:43.817561
+
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] Log closed at 2024-10-18 12:13:44.154930
+
+[92] Log opened at 2024-10-18 12:13:44.190404
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-18 12:13:45.297253
+
+[94] Log opened at 2024-10-18 12:13:59.430537
+>>>>>>> dev/presu_cliente_v2
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+<<<<<<< HEAD
[94] Log closed at 2024-10-18 13:19:05.797588
[94] Log opened at 2024-10-18 13:19:05.864125
@@ -32419,10 +54745,875 @@
[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+=======
+[94] Log closed at 2024-10-18 12:14:06.565656
+
+[95] Log opened at 2024-10-18 12:14:34.860851
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- breakpoint_list -i 1
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- breakpoint_list -i 2
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- breakpoint_list -i 3
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 293
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- run -i 6
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- stack_get -i 7
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- eval -i 8 -- JGNvc3Rl
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- eval -i 9 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- eval -i 10 -- JHBlc28=
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- context_names -i 11 -d 0
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- context_get -i 12 -d 0 -c 0
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- breakpoint_list -i 13
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- breakpoint_remove -i 14 -d 950001
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- run -i 15
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- stack_get -i 16
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- eval -i 17 -- JGNvc3Rl
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- eval -i 18 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- eval -i 19 -- JHBlc28=
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- context_names -i 20 -d 0
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- run -i 21
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- stop -i 22
+[95] [Step Debug] ->
+
+[95] Log closed at 2024-10-18 12:14:43.886931
+
+[100] Log opened at 2024-10-18 12:14:58.461155
+[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100'
+[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[100] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_list -i 1
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_list -i 2
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_list -i 3
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 354
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- run -i 6
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 7
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 8 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 9 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 10 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 11 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 12 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 13 -d 0 -c 1
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 14 -d 0 -c 2
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 15
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 16
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 17 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 18 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 19 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 20 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 21 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 22
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 23
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 24 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 25 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 26 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 27 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 28 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 29
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 30
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 31
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 32 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 33 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 34 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 35 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 36 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_list -i 37
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_remove -i 38 -d 1000001
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_list -i 39
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_set -i 40 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1554
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- run -i 41
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 42
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 43 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 44 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 45 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 46 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 47 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 48
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 49
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 50
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 51 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 52 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 53 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 54 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 55 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 56
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 57
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 58 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 59 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 60 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 61 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 62 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 63
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 64
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 65 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 66 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 67 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 68
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 69 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 70
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 71 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 72 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 73 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 74 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 75
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 76
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 77 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 78 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 79 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 80 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 81 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 82
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 83
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 84
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 85 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 86 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 87 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 88
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 89 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 90
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 91 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 92 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 93 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 94 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 95
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 96
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 97 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 98 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 99 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 100
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 101
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 102 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 103 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 104 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 105
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 106 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 107
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 108 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 109
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 110 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 111 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 112 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 113
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 114 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 115
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 116 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 117
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 118 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 119 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 120 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 121 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 122 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 123
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 124
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 125 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 126 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 127 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 128 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 129 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 130
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 131
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 132 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 133 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 134 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 135 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 136 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 137
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 138
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 139 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 140 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 141 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 142 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 143 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 144
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 145
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 146
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 147 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 148 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 149 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 150 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 151 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 152
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 153
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 154
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 155 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 156 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 157 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 158 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 159 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 160
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 161
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 162 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 163 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 164 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 165 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 166 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 167
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 168
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 169
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 170 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 171 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 172 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 173 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 174 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 175
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 176
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 177
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 178 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 179 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 180 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 181 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 182 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 183 -d 0 -c 1
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 184 -d 0 -c 2
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_list -i 185
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_remove -i 186 -d 1000003
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 187
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 188
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 189
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 190 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 191 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 192 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 193 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 194 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 195 -d 0 -c 1
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 196 -d 0 -c 2
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_list -i 197
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_set -i 198 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2244
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 199
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 200
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 201 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 202 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 203 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 204 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 205 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_list -i 206
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_remove -i 207 -d 1000004
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_set -i 208 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2247
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- run -i 209
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 210
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 211 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 212 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 213 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 214 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 215 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- run -i 216
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stop -i 217
+[100] [Step Debug] ->
+
+[100] Log closed at 2024-10-18 12:17:49.585695
+
+[102] Log opened at 2024-10-18 12:17:52.082699
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[102] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_list -i 1
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_list -i 2
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_list -i 3
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2247
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- run -i 6
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 7
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- eval -i 8 -- JGNvc3Rl
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- eval -i 9 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- eval -i 10 -- JHBlc28=
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 11 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 12 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- run -i 13
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 14
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- eval -i 15 -- JGNvc3Rl
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- eval -i 16 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- eval -i 17 -- JHBlc28=
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 18 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 19 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_list -i 20
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_remove -i 21 -d 1020001
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- run -i 22
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stop -i 23
+[102] [Step Debug] ->
+
+[102] Log closed at 2024-10-18 12:18:03.755563
+
+[87] Log opened at 2024-10-18 12:18:15.067003
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_list -i 1
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_list -i 2
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 3 -t exception -x *
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- run -i 4
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- stop -i 5
+[87] [Step Debug] ->
+
+[87] Log closed at 2024-10-18 12:18:22.726452
+
+[97] Log opened at 2024-10-18 12:18:34.625591
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] ->
+
+[97] [Step Debug] <- breakpoint_list -i 1
+[97] [Step Debug] ->
+
+[97] [Step Debug] <- breakpoint_list -i 2
+[97] [Step Debug] ->
+
+[97] [Step Debug] <- breakpoint_set -i 3 -t exception -x *
+[97] [Step Debug] ->
+
+[97] [Step Debug] <- run -i 4
+[97] [Step Debug] ->
+
+[97] [Step Debug] <- stop -i 5
+[97] [Step Debug] ->
+
+[97] Log closed at 2024-10-18 12:18:42.527330
+
+[101] Log opened at 2024-10-18 12:19:39.434731
+[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101'
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+>>>>>>> dev/presu_cliente_v2
[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+<<<<<<< HEAD
[101] Log closed at 2024-10-18 13:52:45.563282
[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
@@ -32536,4 +55727,67 @@
[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[102] Log closed at 2024-10-18 13:58:52.860341
+=======
+[101] Log closed at 2024-10-18 12:19:41.607696
+
+[101] Log opened at 2024-10-18 12:19:41.756509
+[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101'
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] Log opened at 2024-10-18 12:19:41.790349
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[101] Log closed at 2024-10-18 12:19:42.384951
+
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[92] Log closed at 2024-10-18 12:19:42.796526
+
+[94] Log opened at 2024-10-18 12:19:42.825844
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] Log opened at 2024-10-18 12:19:42.904191
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] Log opened at 2024-10-18 12:19:42.910519
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[95] Log closed at 2024-10-18 12:19:43.743917
+
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[94] Log closed at 2024-10-18 12:19:44.349449
+
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[91] Log closed at 2024-10-18 12:19:44.692158
+
+[100] Log opened at 2024-10-18 12:19:44.722947
+[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100'
+[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[100] Log closed at 2024-10-18 12:19:45.798867
+>>>>>>> dev/presu_cliente_v2