diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js
index 51dd354c..b0b113a5 100644
--- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js
+++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js
@@ -338,6 +338,53 @@ 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));
+
+
+ this.paginas.val(parseInt(datos.paginas));
+ this.paginasNegro.val(parseInt(datos.paginasNegro));
+ this.paginasColor.val(parseInt(datos.paginasColor));
+
+ /*
+
+ 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;
diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js
index 307933fa..e3b2ffba 100644
--- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js
+++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js
@@ -68,12 +68,13 @@ class PresupuestoCliente {
$(".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").off('change');
+ this.#cargarPresupuesto();
const successMessage = sessionStorage.getItem('message');
- if(successMessage){
+ if (successMessage) {
popSuccessAlert(successMessage);
sessionStorage.removeItem('message');
}
@@ -226,7 +227,7 @@ class PresupuestoCliente {
try {
$('#loader').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',
@@ -235,12 +236,12 @@ class PresupuestoCliente {
(response) => {
$('#loader').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(); }
@@ -257,7 +258,16 @@ class PresupuestoCliente {
#procesarPresupuesto(response) {
$('#loader').hide();
- // checj if response.tiradas exists and is not empty
+
+ 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();
@@ -397,6 +407,32 @@ class PresupuestoCliente {
}
+ #cargarPresupuesto() {
+
+ $('#loader').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').hide();
+ $(".calcular-presupuesto").on('change', this.checkForm.bind(this));
+ },
+ () => {
+ $('#loader').hide();
+ $(".calcular-presupuesto").on('change', this.checkForm.bind(this));
+ }
+ ).get();
+ }
+
#isValidDataForm(value) {
if (value === null || value === undefined || value === '') {
diff --git a/xdebug.log b/xdebug.log
index 0a9383a8..0b143d86 100644
--- a/xdebug.log
+++ b/xdebug.log
@@ -25519,3 +25519,11280 @@
[348] Log closed at 2024-10-17 17:34:23.659733
+[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
+