diff --git a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php index 724b41b5..37c7b857 100755 --- a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php +++ b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php @@ -1977,7 +1977,9 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController } $return_data += [ - 'errors' => [], + 'errors' => (object) ([ + 'status' => 0, + ]), //'total_lp' => $costeInterior + $coste_cubierta + $coste_sobrecubierta, //'acabadoCubierta' => $acabadoCubierta, //'acabadoSobrecubierta' => $acabadoSobrecubierta, diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js index 162adc3e..eb5b444b 100644 --- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js +++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js @@ -42,6 +42,7 @@ class PresupuestoCliente { () => { $('#loader').modal('hide'); }); this.actualizarTiradasEnvio = false; + this.calcularPresupuesto = false; } @@ -65,7 +66,7 @@ class PresupuestoCliente { this.btnSave.on('click', this.#savePresupuesto.bind(this)); if (window.location.href.includes("edit")) { - $(".calcular-presupuesto").on('change', () => { }); + this.#cargarPresupuesto(); const successMessage = sessionStorage.getItem('message'); if (successMessage) { @@ -74,61 +75,67 @@ class PresupuestoCliente { } } else { - $(".calcular-presupuesto").on('change', this.checkForm.bind(this)); + this.calcularPresupuesto = true; } + $(".calcular-presupuesto").on('change', this.checkForm.bind(this)); + } checkForm(event) { - if (event.target.id === 'divDirecciones') { - if (!this.direcciones.calcularPresupuesto) { - this.actualizarTiradasEnvio = false; - $('#loader').modal('hide'); - return; + if (this.calcularPresupuesto) { + + if (event.target.id === 'divDirecciones') { + if (!this.direcciones.calcularPresupuesto) { + this.actualizarTiradasEnvio = false; + $('#loader').modal('hide'); + return; + } + + } + else { + this.actualizarTiradasEnvio = true; + this.direcciones.divTiradas.empty(); } - } - else { - this.actualizarTiradasEnvio = true; - this.direcciones.divTiradas.empty(); - } + this.#getDatos(); - this.#getDatos(); + this.divTiradasPrecios.empty(); - this.divTiradasPrecios.empty(); - - let datos_to_check = { ...this.datos }; - if (datos_to_check.direcciones) { - delete datos_to_check.direcciones; - } - if (datos_to_check.posPaginasColor) { - delete datos_to_check.posPaginasColor; - } - - if (Object.values(datos_to_check).every(this.#isValidDataForm)) { - try { - setTimeout(function () { - $('#loader').modal('show'); - }, 0); - - // Si se está ejecutando la petición, abortar la petición anterior - this.ajax_calcular.abort(); - - this.ajax_calcular.setData(this.datos); - this.ajax_calcular.post(); - this.direcciones.calcularPresupuesto = false; + let datos_to_check = { ...this.datos }; + if (datos_to_check.direcciones) { + delete datos_to_check.direcciones; } - catch (e) { - console.log(e); - $('#loader').modal('hide'); + if (datos_to_check.posPaginasColor) { + delete datos_to_check.posPaginasColor; } + if (Object.values(datos_to_check).every(this.#isValidDataForm)) { + try { + setTimeout(function () { + $('#loader').modal('show'); + }, 0); + + // Si se está ejecutando la petición, abortar la petición anterior + this.ajax_calcular.abort(); + + this.ajax_calcular.setData(this.datos); + this.ajax_calcular.post(); + this.direcciones.calcularPresupuesto = false; + } + catch (e) { + console.log(e); + $('#loader').modal('hide'); + } + + } } } + /*RELLENAR_PRESUPUESTO(finalizar) { if (finalizar) { @@ -267,9 +274,11 @@ class PresupuestoCliente { $('#loader').modal('hide'); if (Object.values(response.errors).some((value) => value !== "")) { - popErrorAlert("No se ha podido calcular el presupuesto para los datos proporcionados. Por favor, póngase en contacto con el departamento comercial." - , "sk-alert-2", false); - return; + if (response.errors.status == 1) { + 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(); @@ -277,7 +286,7 @@ class PresupuestoCliente { if (response.tiradas && response.tiradas.length) { - let tiradas = {...response.tiradas}; + let tiradas = { ...response.tiradas }; tiradas = Object.keys(tiradas).map((key) => tiradas[key]); tiradas.sort((a, b) => a - b); this.divTiradasPrecios.empty(); @@ -301,6 +310,7 @@ class PresupuestoCliente { $(`#containerTiradasEnvios .tirada-envio input[tirada="${response.tiradas[0]}"]`).trigger('click'); }, 0); } + // DEBUG //console.log(response); } @@ -437,33 +447,34 @@ class PresupuestoCliente { {}, (response) => { - setTimeout(() => { - if (response.status === 1) { + if (response.status === 1) { - this.lc.val(parseFloat(response.data.lc).toFixed(2)); - this.lsc.val(parseFloat(response.data.lsc).toFixed(2)); + this.lc.val(parseFloat(response.data.lc).toFixed(2)); + this.lsc.val(parseFloat(response.data.lsc).toFixed(2)); - this.datosGenerales.cargarDatos(response.data.datosGenerales); - this.direcciones.handleChangeCliente(); - this.disenioInterior.cargarDatos(response.data.interior, response.data.datosGenerales.papelInteriorDiferente); - this.disenioCubierta.cargarDatos(response.data.cubierta, response.data.guardas, response.data.sobrecubierta); - this.direcciones.cargarDatos(response.data.direcciones, response.data.datosGenerales); + this.calcularPresupuesto = false; - setTimeout(() => { - this.checkForm({ target: { id: 'tirada' } }); - this.validationStepper.next(); - this.validationStepper.next(); - this.validationStepper.next(); - this.validationStepper.next(); - $('#loader').modal('hide'); - }, 0); - } - $(".calcular-presupuesto").on('change', this.checkForm.bind(this)); - }, 0); + this.datosGenerales.cargarDatos(response.data.datosGenerales); + this.direcciones.handleChangeCliente(); + this.disenioInterior.cargarDatos(response.data.interior, response.data.datosGenerales.papelInteriorDiferente); + this.disenioCubierta.cargarDatos(response.data.cubierta, response.data.guardas, response.data.sobrecubierta); + this.direcciones.cargarDatos(response.data.direcciones, response.data.datosGenerales); + + setTimeout(() => { + //this.checkForm({ target: { id: 'tirada' } }); + this.validationStepper.next(); + this.validationStepper.next(); + this.validationStepper.next(); + this.validationStepper.next(); + $('#loader').modal('hide'); + this.calcularPresupuesto = true; + this.checkForm({ target: { id: 'tirada' } }); + }, 0); + } }, () => { $('#loader').modal('hide'); - $(".calcular-presupuesto").on('change', this.checkForm.bind(this)); + this.calcularPresupuesto = true; } ).get(); } diff --git a/httpdocs/assets/js/safekat/pages/preview.js b/httpdocs/assets/js/safekat/pages/preview.js index 2a31f4ac..8e7fef3a 100644 --- a/httpdocs/assets/js/safekat/pages/preview.js +++ b/httpdocs/assets/js/safekat/pages/preview.js @@ -24,15 +24,15 @@ class previewFormas { this.#portadaTapaBlanda(); } } - /*else if (this.tipoLibro.includes("espiral") || this.tipoLibro.includes("wire-o")) { + else if (this.tipoLibro.includes("espiral") || this.tipoLibro.includes("wire-o")) { if (this.tipoTapa.includes("dura")) - portadaEspiral(isThumbnail, true); + this.#portadaEspiral(isThumbnail, true); else - portadaEspiral(isThumbnail, false); + this.#portadaEspiral(isThumbnail, false); } else if (this.tipoLibro.includes("grapado")) { portadaGrapado(isThumbnail); - }*/ + } } @@ -80,7 +80,7 @@ class previewFormas { // Clear the canvas element this.container.empty(); // Get the element for placing the graphical elements - var previewEC = new Two({ fitted: true }).appendTo(this.container); + var previewEC = new Two({ fitted: true }).appendTo(this.container[0]); // Calculate the center of the canvas element var origenEC = new Two.Vector(previewEC.width / 2, previewEC.height / 2); @@ -126,8 +126,8 @@ class previewFormas { previewEC.makeText("Solapa 1", origenEC.x + anchoLibro + (lomoLibro + anchoSolapa) / 2, origenEC.y, stylesSolapa); previewEC.makeText("Solapa 2", origenEC.x - anchoLibro - (lomoLibro + anchoSolapa) / 2, origenEC.y, stylesSolapa); // Textos Cotas Solapas - previewEC.makeText(pvObj.anchoSolapa + " mm", origenEC.x - anchoLibro - (lomoLibro + anchoSolapa) / 2, origenEC.y - (altoLibro / 3) + 15, styleCotas); - previewEC.makeText(pvObj.anchoSolapa + " mm", origenEC.x + anchoLibro + (lomoLibro + anchoSolapa) / 2, origenEC.y - (altoLibro / 3) + 15, styleCotas); + previewEC.makeText(anchoSolapa.toFixed(1) + " mm", origenEC.x - anchoLibro - (lomoLibro + anchoSolapa) / 2, origenEC.y - (altoLibro / 3) + 15, styleCotas); + previewEC.makeText(anchoSolapa.toFixed(1) + " mm", origenEC.x + anchoLibro + (lomoLibro + anchoSolapa) / 2, origenEC.y - (altoLibro / 3) + 15, styleCotas); } } @@ -209,12 +209,12 @@ class previewFormas { previewEC.makeText(sangradoTexto, origenEC.x + (lomoLibro / 2 + anchoLibro + anchoSolapa + 20), origenEC.y, styleSangrado).rotation = -Math.PI / 2; previewEC.makeText(sangradoTexto, origenEC.x - (lomoLibro / 2 + anchoLibro + anchoSolapa + 20), origenEC.y, styleSangrado).rotation = -Math.PI / 2; // Cotas - previewEC.makeText(pvObj.lomoLibro + " mm", origenEC.x, origenEC.y + (altoLibro / 3) + 15, styleCotas); - previewEC.makeText(pvObj.anchoLibro + offsetSolapaValor + " mm", origenEC.x - (lomoLibro / 2 + anchoLibro / 2), origenEC.y - (altoLibro / 3) + 15, styleCotas); - previewEC.makeText(pvObj.anchoLibro + offsetSolapaValor + " mm", origenEC.x + (lomoLibro / 2 + anchoLibro / 2), origenEC.y - (altoLibro / 3) + 15, styleCotas); - previewEC.makeText(pvObj.altoLibro + " mm", origenEC.x + (lomoLibro / 2) + 25, origenEC.y, styleCotas).rotation = -Math.PI / 2; - previewEC.makeText(pvObj.altoLibro + (2 * sangradoValor) + " mm", origenEC.x + (lomoLibro / 2 + anchoLibro + anchoSolapa) + 50, origenEC.y, styleCotas).rotation = -Math.PI / 2; - previewEC.makeText((2 * pvObj.anchoLibro) + (2 * (pvObj.anchoSolapa + offsetSolapaValor)) + pvObj.lomoLibro + (2 * sangradoValor) + " mm", + previewEC.makeText(lomoLibro.toFixed(1) + " mm", origenEC.x, origenEC.y + (altoLibro / 3) + 15, styleCotas); + previewEC.makeText((anchoLibro + offsetSolapaValor).toFixed(1) + " mm", origenEC.x - (lomoLibro / 2 + anchoLibro / 2), origenEC.y - (altoLibro / 3) + 15, styleCotas); + previewEC.makeText((anchoLibro + offsetSolapaValor).toFixed(1) + " mm", origenEC.x + (lomoLibro / 2 + anchoLibro / 2), origenEC.y - (altoLibro / 3) + 15, styleCotas); + previewEC.makeText(altoLibro.toFixed(1) + " mm", origenEC.x + (lomoLibro / 2) + 25, origenEC.y, styleCotas).rotation = -Math.PI / 2; + previewEC.makeText((altoLibro + (2 * sangradoValor)).toFixed(1) + " mm", origenEC.x + (lomoLibro / 2 + anchoLibro + anchoSolapa) + 50, origenEC.y, styleCotas).rotation = -Math.PI / 2; + previewEC.makeText(((2 * anchoLibro) + (2 * (anchoSolapa + offsetSolapaValor)) + lomoLibro + (2 * sangradoValor)).toFixed(1) + " mm", origenEC.x, origenEC.y + (altoLibro / 2) + 50, styleCotas); @@ -365,6 +365,214 @@ class previewFormas { previewEC.update(); } + + #portadaEspiral(isTapaDura = false) { + + // Variables locales + let altoLibro, anchoLibro, anchoCalle, anchoCubierta, altoSangrado, anchoSangrado, anchoSolapa, offsetCubierta; + let styleCotas = { size: 12, family: 'Public Sans' }; + let sangradoTexto = (isTapaDura) ? "Sangrado 20 mm" : "Sangrado 5 mm"; + let sangradoValor = (isTapaDura) ? parseFloat(20) : parseFloat(5); // mm + + + // Definicion de los parametros del Esquema de Cubierta (EC) + if ((anchoSolapa !== 0) && (!isTapaDura)) { + if (isThumbnail) { + anchoSangrado = 350; // px + altoSangrado = (anchoSangrado * 0.647 > 300) ? 300 : anchoSangrado * 0.647; // px + } else { + anchoSangrado = 750; // px + altoSangrado = (anchoSangrado * 0.647 > 650) ? 650 : anchoSangrado * 0.647; // px + } + altoLibro = altoSangrado * 0.95; + anchoLibro = anchoSangrado * 0.28; + anchoCalle = anchoSangrado * 0.02; + anchoSolapa = anchoSangrado * 0.163; + sangrado = anchoSangrado * 0.03; + anchoCubierta = 2 * (anchoLibro + anchoSolapa + sangrado) + anchoCalle; + offsetCubierta = anchoLibro / 2 + anchoCalle / 2 + anchoSolapa / 2 + sangrado; + } else { + if (this.size == "thumbnail") { + anchoSangrado = 350; // px + altoSangrado = (anchoSangrado * 0.647 > 300) ? 300 : anchoSangrado * 0.647; // px + } else { + anchoSangrado = 750; // px + altoSangrado = (anchoSangrado * 0.647 > 650) ? 650 : anchoSangrado * 0.647; // px + } + altoLibro = (isTapaDura) ? altoSangrado * 0.88 : altoSangrado * 0.97; + anchoLibro = (isTapaDura) ? anchoSangrado * 0.39 : anchoSangrado * 0.419; + anchoCalle = anchoSangrado * 0.02; + anchoSolapa = 0; + anchoCubierta = (2 * anchoLibro) + (2 * anchoSolapa) + anchoCalle; + offsetCubierta = anchoLibro / 2 + anchoCalle / 2 + anchoSolapa + sangradoValor; + } + + var previewEC = new Two({ fitted: true }).appendTo(this.container[0]); + // Calculate the center of the canvas element + var origenEC = new Two.Vector(previewEC.width / 2, previewEC.height / 2); + + var sangrado = previewEC.makeRectangle( + origenEC.x, + origenEC.y, + anchoSangrado, + altoSangrado + ); + sangrado.stroke = 'black'; + sangrado.dashes = [5, 5]; + sangrado.fill = '#FCEAF1'; + sangrado.linewidth = 1; + + if ((anchoSolapa != 0) && (!isTapaDura)) { + var solapa1 = previewEC.makeRectangle( + origenEC.x + (anchoLibro + anchoCalle / 2 + anchoSolapa / 2 + sangradoValor), + origenEC.y, + anchoSolapa, + altoLibro); + solapa1.stroke = 'black'; + solapa1.linewidth = 1; + + var solapa2 = previewEC.makeRectangle( + origenEC.x - (anchoLibro + anchoCalle / 2 + anchoSolapa / 2 + sangradoValor), + origenEC.y, + anchoSolapa, + altoLibro); + solapa2.stroke = 'black'; + solapa2.linewidth = 1; + + // Cotas y textos + if (!isThumbnail) { + // Cotas + var cotaSolapa2 = previewEC.makeDobleArrow( + origenEC.x - (anchoCalle / 2 + sangradoValor + anchoLibro + anchoSolapa), + origenEC.y - (altoLibro / 3), + origenEC.x - (anchoLibro + sangradoValor + anchoCalle / 2), + origenEC.y - (altoLibro / 3), + 10); + cotaSolapa2.linewidth = 2; + var cotaSolapa1 = previewEC.makeDobleArrow( + origenEC.x + (anchoCalle / 2 + sangradoValor + anchoLibro + anchoSolapa), + origenEC.y - (altoLibro / 3), + origenEC.x + (anchoLibro + sangradoValor + anchoCalle / 2), + origenEC.y - (altoLibro / 3), + 10); + cotaSolapa1.linewidth = 2; + + // Textos Solapas + let stylesSolapa = { size: 18, family: 'Public Sans' }; + previewEC.makeText("Solapa 1", origenEC.x + anchoLibro + (anchoCalle + anchoSolapa) / 2, origenEC.y, stylesSolapa); + previewEC.makeText("Solapa 2", origenEC.x - anchoLibro - (anchoCalle + anchoSolapa) / 2, origenEC.y, stylesSolapa); + // Textos Cotas Solapas + previewEC.makeText(anchoSolapa + " mm", origenEC.x - anchoLibro - (anchoCalle + anchoSolapa) / 2, origenEC.y - (altoLibro / 3) + 15, styleCotas); + previewEC.makeText(anchoSolapa + " mm", origenEC.x + anchoLibro + (anchoCalle + anchoSolapa) / 2, origenEC.y - (altoLibro / 3) + 15, styleCotas); + } + + } + + var portada = previewEC.makeRectangle( + origenEC.x + (anchoLibro / 2 + anchoCalle / 2 + sangradoValor), + origenEC.y, + anchoLibro, + altoLibro); + portada.stroke = 'black'; + portada.linewidth = 1; + + var contraportada = previewEC.makeRectangle( + origenEC.x - (anchoLibro / 2 + anchoCalle / 2 + sangradoValor), + origenEC.y, + anchoLibro, + altoLibro); + contraportada.stroke = 'black'; + contraportada.linewidth = 1; + + var calle = previewEC.makeRectangle( + origenEC.x, + origenEC.y, + anchoCalle, + altoSangrado); + calle.stroke = 'black'; + calle.dashes = [2, 5]; + calle.fill = '#F4F8F2'; + calle.linewidth = 1; + + // Cotas y textos + if (!isThumbnail) { + // Cotas: + var cotaAnchoCubierta = previewEC.makeDobleArrow( + origenEC.x - (anchoSangrado / 2), + origenEC.y + (altoLibro / 2) + 35, + origenEC.x + (anchoSangrado / 2), + origenEC.y + (altoLibro / 2) + 35, + 10); + cotaAnchoCubierta.linewidth = 2; + var cotaAltoCubierta = previewEC.makeDobleArrow( + origenEC.x + (anchoSangrado / 2) + 15, + origenEC.y + (altoSangrado / 2), + origenEC.x + (anchoSangrado / 2) + 15, + origenEC.y - (altoSangrado / 2), + 10); + cotaAltoCubierta.linewidth = 2; + var cotaAltoLibro = previewEC.makeDobleArrow( + origenEC.x + (anchoCalle / 2) + 35, + origenEC.y + (altoLibro / 2), + origenEC.x + (anchoCalle / 2) + 35, + origenEC.y - (altoLibro / 2), + 10); + cotaAltoLibro.linewidth = 2; + var cotaContraportada = previewEC.makeDobleArrow( + origenEC.x - (anchoCalle / 2 + anchoLibro + sangradoValor), + origenEC.y - (altoLibro / 3), + origenEC.x - ((anchoCalle / 2) + sangradoValor), + origenEC.y - (altoLibro / 3), + 10); + cotaContraportada.linewidth = 2; + var cotaPortada = previewEC.makeDobleArrow( + origenEC.x + ((anchoCalle / 2) + sangradoValor), + origenEC.y - (altoLibro / 3), + origenEC.x + (anchoCalle / 2 + anchoLibro + sangradoValor), + origenEC.y - (altoLibro / 3), + 10); + cotaPortada.linewidth = 2; + + + // Textos: + // Titulos generales + let stylesEC = { size: 22, weight: 'bold', family: 'Public Sans' }; + previewEC.makeText("Portada", + origenEC.x + anchoLibro / 2 + anchoCalle / 2 + sangradoValor + 15, + origenEC.y, + stylesEC + ); + previewEC.makeText("Contraportada", + origenEC.x - (anchoLibro / 2 + anchoCalle / 2 + sangradoValor), + origenEC.y, + stylesEC + ); + // Sangrados + let styleSangrado = { size: 10, family: 'Public Sans', style: 'italic', fill: 'red' }; + previewEC.makeText(sangradoTexto, origenEC.x + offsetCubierta, origenEC.y + (altoLibro / 2 + 13), styleSangrado); + previewEC.makeText(sangradoTexto, origenEC.x + offsetCubierta, origenEC.y - (altoLibro / 2 + 13), styleSangrado); + previewEC.makeText(sangradoTexto, origenEC.x - offsetCubierta, origenEC.y + (altoLibro / 2 + 13), styleSangrado); + previewEC.makeText(sangradoTexto, origenEC.x - offsetCubierta, origenEC.y - (altoLibro / 2 + 13), styleSangrado); + previewEC.makeText(sangradoTexto, origenEC.x + (anchoSangrado / 2) - 20, origenEC.y, styleSangrado).rotation = -Math.PI / 2; + previewEC.makeText(sangradoTexto, origenEC.x - (anchoSangrado / 2) + 20, origenEC.y, styleSangrado).rotation = -Math.PI / 2; + // Cotas + previewEC.makeText(anchoLibro.toFixed(1) + " mm", origenEC.x - (offsetCubierta - anchoSolapa / 2), origenEC.y - (altoLibro / 3) + 15, styleCotas); + previewEC.makeText(anchoLibro.toFixed(1) + " mm", origenEC.x + (offsetCubierta - anchoSolapa / 2), origenEC.y - (altoLibro / 3) + 15, styleCotas); + previewEC.makeText(altoLibro.toFixed(1) + " mm", origenEC.x + (anchoCalle / 2) + 50, origenEC.y, styleCotas).rotation = -Math.PI / 2; + previewEC.makeText((altoLibro + (2 * sangradoValor)).toFixed(1) + " mm", + origenEC.x + (anchoSangrado / 2) + 30, + origenEC.y, + styleCotas + ).rotation = -Math.PI / 2; + previewEC.makeText(((2 * anchoLibro) + lomoLibro + (2 * sangradoValor)).toFixed(1) + " mm", + origenEC.x, + origenEC.y + (altoLibro / 2) + 50, + styleCotas); + } + + previewEC.update(); + + } } export default previewFormas; @@ -443,7 +651,7 @@ function portadaTapaBlanda(isThumbnail = false) { // Definicion de los parametros del Esquema de Cubierta (EC) - if (pvObj.anchoSolapa == 0) { + if (anchoSolapa == 0) { if (isThumbnail) { anchoSangrado = 350; // px altoSangrado = (anchoSangrado * 0.647 > 300) ? 300 : anchoSangrado * 0.647; // px @@ -492,7 +700,7 @@ function portadaTapaBlanda(isThumbnail = false) { sangrado.fill = '#FCEAF1'; sangrado.linewidth = 1; - if (pvObj.anchoSolapa != 0) { + if (anchoSolapa != 0) { var solapas = previewEC.makeRectangle( origenEC.x, origenEC.y, @@ -523,8 +731,8 @@ function portadaTapaBlanda(isThumbnail = false) { previewEC.makeText("Solapa 1", origenEC.x + anchoLibro + (lomoLibro + anchoSolapa) / 2, origenEC.y, stylesSolapa); previewEC.makeText("Solapa 2", origenEC.x - anchoLibro - (lomoLibro + anchoSolapa) / 2, origenEC.y, stylesSolapa); // Textos Cotas Solapas - previewEC.makeText(pvObj.anchoSolapa + " mm", origenEC.x - anchoLibro - (lomoLibro + anchoSolapa) / 2, origenEC.y - (altoLibro / 3) + 15, styleCotas); - previewEC.makeText(pvObj.anchoSolapa + " mm", origenEC.x + anchoLibro + (lomoLibro + anchoSolapa) / 2, origenEC.y - (altoLibro / 3) + 15, styleCotas); + previewEC.makeText(anchoSolapa + " mm", origenEC.x - anchoLibro - (lomoLibro + anchoSolapa) / 2, origenEC.y - (altoLibro / 3) + 15, styleCotas); + previewEC.makeText(anchoSolapa + " mm", origenEC.x + anchoLibro + (lomoLibro + anchoSolapa) / 2, origenEC.y - (altoLibro / 3) + 15, styleCotas); } } @@ -606,12 +814,12 @@ function portadaTapaBlanda(isThumbnail = false) { previewEC.makeText(sangradoTexto, origenEC.x + (lomoLibro / 2 + anchoLibro + anchoSolapa + 20), origenEC.y, styleSangrado).rotation = -Math.PI / 2; previewEC.makeText(sangradoTexto, origenEC.x - (lomoLibro / 2 + anchoLibro + anchoSolapa + 20), origenEC.y, styleSangrado).rotation = -Math.PI / 2; // Cotas - previewEC.makeText(pvObj.lomoLibro + " mm", origenEC.x, origenEC.y + (altoLibro / 3) + 15, styleCotas); - previewEC.makeText(pvObj.anchoLibro + offsetSolapaValor + " mm", origenEC.x - (lomoLibro / 2 + anchoLibro / 2), origenEC.y - (altoLibro / 3) + 15, styleCotas); - previewEC.makeText(pvObj.anchoLibro + offsetSolapaValor + " mm", origenEC.x + (lomoLibro / 2 + anchoLibro / 2), origenEC.y - (altoLibro / 3) + 15, styleCotas); - previewEC.makeText(pvObj.altoLibro + " mm", origenEC.x + (lomoLibro / 2) + 25, origenEC.y, styleCotas).rotation = -Math.PI / 2; - previewEC.makeText(pvObj.altoLibro + (2 * sangradoValor) + " mm", origenEC.x + (lomoLibro / 2 + anchoLibro + anchoSolapa) + 50, origenEC.y, styleCotas).rotation = -Math.PI / 2; - previewEC.makeText((2 * pvObj.anchoLibro) + (2 * (pvObj.anchoSolapa + offsetSolapaValor)) + pvObj.lomoLibro + (2 * sangradoValor) + " mm", + previewEC.makeText(lomoLibro + " mm", origenEC.x, origenEC.y + (altoLibro / 3) + 15, styleCotas); + previewEC.makeText(anchoLibro + offsetSolapaValor + " mm", origenEC.x - (lomoLibro / 2 + anchoLibro / 2), origenEC.y - (altoLibro / 3) + 15, styleCotas); + previewEC.makeText(anchoLibro + offsetSolapaValor + " mm", origenEC.x + (lomoLibro / 2 + anchoLibro / 2), origenEC.y - (altoLibro / 3) + 15, styleCotas); + previewEC.makeText(altoLibro + " mm", origenEC.x + (lomoLibro / 2) + 25, origenEC.y, styleCotas).rotation = -Math.PI / 2; + previewEC.makeText(altoLibro + (2 * sangradoValor) + " mm", origenEC.x + (lomoLibro / 2 + anchoLibro + anchoSolapa) + 50, origenEC.y, styleCotas).rotation = -Math.PI / 2; + previewEC.makeText((2 * anchoLibro) + (2 * (anchoSolapa + offsetSolapaValor)) + lomoLibro + (2 * sangradoValor) + " mm", origenEC.x, origenEC.y + (altoLibro / 2) + 50, styleCotas); @@ -622,221 +830,7 @@ function portadaTapaBlanda(isThumbnail = false) { } -function portadaEspiral(isThumbnail = false, isTapaDura = false) { - // Variables locales - let altoLibro, anchoLibro, anchoCalle, anchoCubierta, altoSangrado, anchoSangrado, anchoSolapa, offsetCubierta; - let styleCotas = { size: 12, family: 'Public Sans' }; - let sangradoTexto = (isTapaDura) ? "Sangrado 20 mm" : "Sangrado 5 mm"; - let sangradoValor = (isTapaDura) ? parseFloat(20) : parseFloat(5); // mm - - let divIdName = (isThumbnail) ? 'thumbnail_ec_shape' : 'pv_ec_shape'; - - // Get the preview Object parameters - getObjetoToPreview(); - - // Definicion de los parametros del Esquema de Cubierta (EC) - if ((pvObj.anchoSolapa !== 0) && (!isTapaDura)) { - if (isThumbnail) { - anchoSangrado = 350; // px - altoSangrado = (anchoSangrado * 0.647 > 300) ? 300 : anchoSangrado * 0.647; // px - } else { - anchoSangrado = 750; // px - altoSangrado = (anchoSangrado * 0.647 > 650) ? 650 : anchoSangrado * 0.647; // px - } - altoLibro = altoSangrado * 0.95; - anchoLibro = anchoSangrado * 0.28; - anchoCalle = anchoSangrado * 0.02; - anchoSolapa = anchoSangrado * 0.163; - sangrado = anchoSangrado * 0.03; - anchoCubierta = 2 * (anchoLibro + anchoSolapa + sangrado) + anchoCalle; - offsetCubierta = anchoLibro / 2 + anchoCalle / 2 + anchoSolapa / 2 + sangrado; - } else { - if (isThumbnail) { - anchoSangrado = 350; // px - altoSangrado = (anchoSangrado * 0.647 > 300) ? 300 : anchoSangrado * 0.647; // px - } else { - anchoSangrado = 750; // px - altoSangrado = (anchoSangrado * 0.647 > 650) ? 650 : anchoSangrado * 0.647; // px - } - altoLibro = (isTapaDura) ? altoSangrado * 0.88 : altoSangrado * 0.97; - anchoLibro = (isTapaDura) ? anchoSangrado * 0.39 : anchoSangrado * 0.419; - anchoCalle = anchoSangrado * 0.02; - anchoSolapa = 0; - anchoCubierta = (2 * anchoLibro) + (2 * anchoSolapa) + anchoCalle; - offsetCubierta = anchoLibro / 2 + anchoCalle / 2 + anchoSolapa + sangradoValor; - } - - // Clear the canvas element - $(`#${divIdName}`).empty(); - // Get the element for placing the graphical elements - var divEC = document.getElementById(divIdName); - var previewEC = new Two({ fitted: true }).appendTo(divEC); - // Calculate the center of the canvas element - var origenEC = new Two.Vector(previewEC.width / 2, previewEC.height / 2); - - var sangrado = previewEC.makeRectangle( - origenEC.x, - origenEC.y, - anchoSangrado, - altoSangrado - ); - sangrado.stroke = 'black'; - sangrado.dashes = [5, 5]; - sangrado.fill = '#FCEAF1'; - sangrado.linewidth = 1; - - if ((pvObj.anchoSolapa != 0) && (!isTapaDura)) { - var solapa1 = previewEC.makeRectangle( - origenEC.x + (anchoLibro + anchoCalle / 2 + anchoSolapa / 2 + sangradoValor), - origenEC.y, - anchoSolapa, - altoLibro); - solapa1.stroke = 'black'; - solapa1.linewidth = 1; - - var solapa2 = previewEC.makeRectangle( - origenEC.x - (anchoLibro + anchoCalle / 2 + anchoSolapa / 2 + sangradoValor), - origenEC.y, - anchoSolapa, - altoLibro); - solapa2.stroke = 'black'; - solapa2.linewidth = 1; - - // Cotas y textos - if (!isThumbnail) { - // Cotas - var cotaSolapa2 = previewEC.makeDobleArrow( - origenEC.x - (anchoCalle / 2 + sangradoValor + anchoLibro + anchoSolapa), - origenEC.y - (altoLibro / 3), - origenEC.x - (anchoLibro + sangradoValor + anchoCalle / 2), - origenEC.y - (altoLibro / 3), - 10); - cotaSolapa2.linewidth = 2; - var cotaSolapa1 = previewEC.makeDobleArrow( - origenEC.x + (anchoCalle / 2 + sangradoValor + anchoLibro + anchoSolapa), - origenEC.y - (altoLibro / 3), - origenEC.x + (anchoLibro + sangradoValor + anchoCalle / 2), - origenEC.y - (altoLibro / 3), - 10); - cotaSolapa1.linewidth = 2; - - // Textos Solapas - let stylesSolapa = { size: 18, family: 'Public Sans' }; - previewEC.makeText("Solapa 1", origenEC.x + anchoLibro + (anchoCalle + anchoSolapa) / 2, origenEC.y, stylesSolapa); - previewEC.makeText("Solapa 2", origenEC.x - anchoLibro - (anchoCalle + anchoSolapa) / 2, origenEC.y, stylesSolapa); - // Textos Cotas Solapas - previewEC.makeText(pvObj.anchoSolapa + " mm", origenEC.x - anchoLibro - (anchoCalle + anchoSolapa) / 2, origenEC.y - (altoLibro / 3) + 15, styleCotas); - previewEC.makeText(pvObj.anchoSolapa + " mm", origenEC.x + anchoLibro + (anchoCalle + anchoSolapa) / 2, origenEC.y - (altoLibro / 3) + 15, styleCotas); - } - - } - - var portada = previewEC.makeRectangle( - origenEC.x + (anchoLibro / 2 + anchoCalle / 2 + sangradoValor), - origenEC.y, - anchoLibro, - altoLibro); - portada.stroke = 'black'; - portada.linewidth = 1; - - var contraportada = previewEC.makeRectangle( - origenEC.x - (anchoLibro / 2 + anchoCalle / 2 + sangradoValor), - origenEC.y, - anchoLibro, - altoLibro); - contraportada.stroke = 'black'; - contraportada.linewidth = 1; - - var calle = previewEC.makeRectangle( - origenEC.x, - origenEC.y, - anchoCalle, - altoSangrado); - calle.stroke = 'black'; - calle.dashes = [2, 5]; - calle.fill = '#F4F8F2'; - calle.linewidth = 1; - - // Cotas y textos - if (!isThumbnail) { - // Cotas: - var cotaAnchoCubierta = previewEC.makeDobleArrow( - origenEC.x - (anchoSangrado / 2), - origenEC.y + (altoLibro / 2) + 35, - origenEC.x + (anchoSangrado / 2), - origenEC.y + (altoLibro / 2) + 35, - 10); - cotaAnchoCubierta.linewidth = 2; - var cotaAltoCubierta = previewEC.makeDobleArrow( - origenEC.x + (anchoSangrado / 2) + 15, - origenEC.y + (altoSangrado / 2), - origenEC.x + (anchoSangrado / 2) + 15, - origenEC.y - (altoSangrado / 2), - 10); - cotaAltoCubierta.linewidth = 2; - var cotaAltoLibro = previewEC.makeDobleArrow( - origenEC.x + (anchoCalle / 2) + 35, - origenEC.y + (altoLibro / 2), - origenEC.x + (anchoCalle / 2) + 35, - origenEC.y - (altoLibro / 2), - 10); - cotaAltoLibro.linewidth = 2; - var cotaContraportada = previewEC.makeDobleArrow( - origenEC.x - (anchoCalle / 2 + anchoLibro + sangradoValor), - origenEC.y - (altoLibro / 3), - origenEC.x - ((anchoCalle / 2) + sangradoValor), - origenEC.y - (altoLibro / 3), - 10); - cotaContraportada.linewidth = 2; - var cotaPortada = previewEC.makeDobleArrow( - origenEC.x + ((anchoCalle / 2) + sangradoValor), - origenEC.y - (altoLibro / 3), - origenEC.x + (anchoCalle / 2 + anchoLibro + sangradoValor), - origenEC.y - (altoLibro / 3), - 10); - cotaPortada.linewidth = 2; - - - // Textos: - // Titulos generales - let stylesEC = { size: 22, weight: 'bold', family: 'Public Sans' }; - previewEC.makeText("Portada", - origenEC.x + anchoLibro / 2 + anchoCalle / 2 + sangradoValor + 15, - origenEC.y, - stylesEC - ); - previewEC.makeText("Contraportada", - origenEC.x - (anchoLibro / 2 + anchoCalle / 2 + sangradoValor), - origenEC.y, - stylesEC - ); - // Sangrados - let styleSangrado = { size: 10, family: 'Public Sans', style: 'italic', fill: 'red' }; - previewEC.makeText(sangradoTexto, origenEC.x + offsetCubierta, origenEC.y + (altoLibro / 2 + 13), styleSangrado); - previewEC.makeText(sangradoTexto, origenEC.x + offsetCubierta, origenEC.y - (altoLibro / 2 + 13), styleSangrado); - previewEC.makeText(sangradoTexto, origenEC.x - offsetCubierta, origenEC.y + (altoLibro / 2 + 13), styleSangrado); - previewEC.makeText(sangradoTexto, origenEC.x - offsetCubierta, origenEC.y - (altoLibro / 2 + 13), styleSangrado); - previewEC.makeText(sangradoTexto, origenEC.x + (anchoSangrado / 2) - 20, origenEC.y, styleSangrado).rotation = -Math.PI / 2; - previewEC.makeText(sangradoTexto, origenEC.x - (anchoSangrado / 2) + 20, origenEC.y, styleSangrado).rotation = -Math.PI / 2; - // Cotas - previewEC.makeText(pvObj.anchoLibro + " mm", origenEC.x - (offsetCubierta - anchoSolapa / 2), origenEC.y - (altoLibro / 3) + 15, styleCotas); - previewEC.makeText(pvObj.anchoLibro + " mm", origenEC.x + (offsetCubierta - anchoSolapa / 2), origenEC.y - (altoLibro / 3) + 15, styleCotas); - previewEC.makeText(pvObj.altoLibro + " mm", origenEC.x + (anchoCalle / 2) + 50, origenEC.y, styleCotas).rotation = -Math.PI / 2; - previewEC.makeText(pvObj.altoLibro + (2 * sangradoValor) + " mm", - origenEC.x + (anchoSangrado / 2) + 30, - origenEC.y, - styleCotas - ).rotation = -Math.PI / 2; - previewEC.makeText((2 * pvObj.anchoLibro) + pvObj.lomoLibro + (2 * sangradoValor) + " mm", - origenEC.x, - origenEC.y + (altoLibro / 2) + 50, - styleCotas); - } - - previewEC.update(); - -} function portadaGrapado(isThumbnail = false) { @@ -853,7 +847,7 @@ function portadaGrapado(isThumbnail = false) { getObjetoToPreview(); // Definicion de los parametros del Esquema de Cubierta (EC) - if (pvObj.anchoSolapa == 0) { + if (anchoSolapa == 0) { if (isThumbnail) { anchoSangrado = 350; // px altoSangrado = (anchoSangrado * 0.647 > 300) ? 300 : anchoSangrado * 0.647; // px @@ -901,7 +895,7 @@ function portadaGrapado(isThumbnail = false) { sangrado.fill = '#FCEAF1'; sangrado.linewidth = 1; - if (pvObj.anchoSolapa != 0) { + if (anchoSolapa != 0) { var solapas = previewEC.makeRectangle( origenEC.x, origenEC.y, @@ -933,8 +927,8 @@ function portadaGrapado(isThumbnail = false) { previewEC.makeText("Solapa 1", origenEC.x + anchoLibro + (lomoLibro + anchoSolapa) / 2, origenEC.y, stylesSolapa); previewEC.makeText("Solapa 2", origenEC.x - anchoLibro - (lomoLibro + anchoSolapa) / 2, origenEC.y, stylesSolapa); // Textos Cotas Solapas - previewEC.makeText(pvObj.anchoSolapa + " mm", origenEC.x - anchoLibro - (lomoLibro + anchoSolapa) / 2, origenEC.y - (altoLibro / 3) + 15, styleCotas); - previewEC.makeText(pvObj.anchoSolapa + " mm", origenEC.x + anchoLibro + (lomoLibro + anchoSolapa) / 2, origenEC.y - (altoLibro / 3) + 15, styleCotas); + previewEC.makeText(anchoSolapa + " mm", origenEC.x - anchoLibro - (lomoLibro + anchoSolapa) / 2, origenEC.y - (altoLibro / 3) + 15, styleCotas); + previewEC.makeText(anchoSolapa + " mm", origenEC.x + anchoLibro + (lomoLibro + anchoSolapa) / 2, origenEC.y - (altoLibro / 3) + 15, styleCotas); } } @@ -1007,11 +1001,11 @@ function portadaGrapado(isThumbnail = false) { previewEC.makeText(sangradoTexto, origenEC.x + (lomoLibro / 2 + anchoLibro + anchoSolapa + 20), origenEC.y, styleSangrado).rotation = -Math.PI / 2; previewEC.makeText(sangradoTexto, origenEC.x - (lomoLibro / 2 + anchoLibro + anchoSolapa + 20), origenEC.y, styleSangrado).rotation = -Math.PI / 2; // Cotas - previewEC.makeText(pvObj.anchoLibro + offsetSolapaValor + " mm", origenEC.x - (lomoLibro / 2 + anchoLibro / 2), origenEC.y - (altoLibro / 3) + 15, styleCotas); - previewEC.makeText(pvObj.anchoLibro + offsetSolapaValor + " mm", origenEC.x + (lomoLibro / 2 + anchoLibro / 2), origenEC.y - (altoLibro / 3) + 15, styleCotas); - previewEC.makeText(pvObj.altoLibro + " mm", origenEC.x + (lomoLibro / 2) + 25, origenEC.y, styleCotas).rotation = -Math.PI / 2; - previewEC.makeText(pvObj.altoLibro + (2 * sangradoValor) + " mm", origenEC.x + (lomoLibro / 2 + anchoLibro + anchoSolapa) + 50, origenEC.y, styleCotas).rotation = -Math.PI / 2; - previewEC.makeText((2 * pvObj.anchoLibro) + (2 * (pvObj.anchoSolapa + offsetSolapaValor)) + pvObj.lomoLibro + (2 * sangradoValor) + " mm", + previewEC.makeText(anchoLibro + offsetSolapaValor + " mm", origenEC.x - (lomoLibro / 2 + anchoLibro / 2), origenEC.y - (altoLibro / 3) + 15, styleCotas); + previewEC.makeText(anchoLibro + offsetSolapaValor + " mm", origenEC.x + (lomoLibro / 2 + anchoLibro / 2), origenEC.y - (altoLibro / 3) + 15, styleCotas); + previewEC.makeText(altoLibro + " mm", origenEC.x + (lomoLibro / 2) + 25, origenEC.y, styleCotas).rotation = -Math.PI / 2; + previewEC.makeText(altoLibro + (2 * sangradoValor) + " mm", origenEC.x + (lomoLibro / 2 + anchoLibro + anchoSolapa) + 50, origenEC.y, styleCotas).rotation = -Math.PI / 2; + previewEC.makeText((2 * anchoLibro) + (2 * (anchoSolapa + offsetSolapaValor)) + lomoLibro + (2 * sangradoValor) + " mm", origenEC.x, origenEC.y + (altoLibro / 2) + 50, styleCotas); diff --git a/xdebug.log b/xdebug.log index abb75096..dca3bcfa 100644 --- a/xdebug.log +++ b/xdebug.log @@ -96992,3 +96992,14162 @@ Stack trace: [102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). [102] Log closed at 2024-10-21 20:38:21.891920 +[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[112] Log closed at 2024-10-21 20:38:39.443573 + +[107] Log opened at 2024-10-21 20:39:18.526283 +[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' +[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[107] Log closed at 2024-10-21 20:39:23.276317 + +[116] Log opened at 2024-10-21 20:39:35.981635 +[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116' +[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[116] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[116] [Step Debug] -> + +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1448 +[116] [Step Debug] -> + +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[116] [Step Debug] -> + +[116] [Step Debug] <- run -i 11 +[116] [Step Debug] -> + +[116] Log closed at 2024-10-21 20:39:40.044158 + +[116] Log opened at 2024-10-21 20:39:43.126564 +[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116' +[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[116] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1448 +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[116] [Step Debug] -> + +[116] [Step Debug] <- run -i 11 +[116] [Step Debug] -> + +[116] [Step Debug] -> + +[116] [Step Debug] -> + +[116] [Step Debug] <- stack_get -i 12 +[116] [Step Debug] -> + +[116] [Step Debug] <- property_get -i 13 -n "$t" -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- property_get -i 14 -n "$data" -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- property_get -i 15 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- property_get -i 16 -n "$datos_papel" -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- context_names -i 17 -d 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- run -i 19 +[116] [Step Debug] -> + +[116] [Step Debug] <- stack_get -i 20 +[116] [Step Debug] -> + +[116] [Step Debug] <- property_get -i 21 -n "$t" -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- property_get -i 22 -n "$data" -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- property_get -i 23 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- property_get -i 24 -n "$datos_papel" -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- context_names -i 25 -d 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- context_get -i 26 -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- property_get -i 27 -n "$return_data" -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- property_get -i 28 -n "$return_data[\"errors\"]" -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_remove -i 29 -d 1160014 +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1665 +[116] [Step Debug] -> + +[116] [Step Debug] -> + +[116] [Step Debug] <- run -i 31 +[116] [Step Debug] -> + +[116] Log closed at 2024-10-21 20:40:14.854184 + +[116] Log opened at 2024-10-21 20:40:17.029430 +[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116' +[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[116] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1448 +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1665 +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[116] [Step Debug] -> + +[116] [Step Debug] <- run -i 11 +[116] [Step Debug] -> + +[116] [Step Debug] -> + +[116] [Step Debug] -> + +[116] [Step Debug] <- stack_get -i 12 +[116] [Step Debug] -> + +[116] [Step Debug] <- property_get -i 13 -n "$t" -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- property_get -i 14 -n "$data" -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- property_get -i 15 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- property_get -i 16 -n "$datos_papel" -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- context_names -i 17 -d 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- run -i 19 +[116] [Step Debug] -> + +[116] [Step Debug] <- stack_get -i 20 +[116] [Step Debug] -> + +[116] [Step Debug] <- property_get -i 21 -n "$t" -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- property_get -i 22 -n "$data" -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- property_get -i 23 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- property_get -i 24 -n "$datos_papel" -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- context_names -i 25 -d 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- context_get -i 26 -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- property_get -i 27 -n "$totalPapel" -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- property_get -i 28 -n "$linea_sobrecubierta" -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- step_over -i 29 +[116] [Step Debug] -> + +[116] [Step Debug] <- stack_get -i 30 +[116] [Step Debug] -> + +[116] [Step Debug] <- property_get -i 31 -n "$t" -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- property_get -i 32 -n "$data" -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- property_get -i 33 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- property_get -i 34 -n "$datos_papel" -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- context_names -i 35 -d 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- context_get -i 36 -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- property_get -i 37 -n "$linea_sobrecubierta" -d 0 -c 0 +[116] [Step Debug] -> + +[116] [Step Debug] <- run -i 38 +[116] [Step Debug] -> + +[116] Log closed at 2024-10-21 20:40:31.134756 + +[108] Log opened at 2024-10-21 20:40:40.102281 +[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' +[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[108] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1448 +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[108] [Step Debug] -> + +[108] [Step Debug] <- run -i 10 +[108] [Step Debug] -> + +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 11 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 12 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 13 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 14 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 15 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_names -i 16 -d 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_get -i 17 -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1665 +[108] [Step Debug] -> + +[108] [Step Debug] -> + +[108] [Step Debug] <- run -i 19 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 20 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 21 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 22 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 23 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 24 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_names -i 25 -d 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_get -i 26 -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- step_into -i 27 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 28 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 29 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 30 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 31 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 32 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_names -i 33 -d 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_get -i 34 -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- step_over -i 35 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 36 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 37 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 38 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 39 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 40 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 41 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- step_over -i 42 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 43 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 44 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 45 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 46 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 47 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- step_over -i 48 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 49 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 50 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 51 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 52 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 53 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- step_over -i 54 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_names -i 55 -d 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 56 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_get -i 57 -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 58 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 59 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 60 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 61 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- step_over -i 62 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 63 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 64 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 65 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 66 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 67 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 68 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- step_over -i 69 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 70 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 71 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 72 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 73 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 74 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- step_over -i 75 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 76 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 77 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 78 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 79 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 80 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- step_over -i 81 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_names -i 82 -d 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 83 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_get -i 84 -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 85 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 86 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 87 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 88 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- step_over -i 89 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 90 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 91 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 92 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 93 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 94 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 95 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_names -i 96 -d 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_get -i 97 -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- step_over -i 98 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 99 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 100 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 101 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 102 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 103 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 104 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_names -i 105 -d 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_get -i 106 -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- step_over -i 107 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 108 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 109 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 110 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 111 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 112 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_names -i 113 -d 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_get -i 114 -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- step_over -i 115 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 116 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 117 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 118 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 119 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 120 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 121 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_names -i 122 -d 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_get -i 123 -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 124 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- step_over -i 125 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 126 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 127 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 128 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 129 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 130 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_names -i 131 -d 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_get -i 132 -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- eval -i 133 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZWQ0N2IyMmQwMTgwYmE5ZGRlZDQ2OGFlZTBkMTE4MWEyMGM1N2Q1NjcwYWI3YjhlYTRjZDg4ZDYyZmUxNTg3ZCddPVByZXN1cHVlc3RvU2VydmljZTo6b2J0ZW5lckNvbXBhcmFkb3JQbGFuYQ== +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 134 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[108] [Step Debug] -> + +[108] [Step Debug] -> + +[108] [Step Debug] <- run -i 135 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 136 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 137 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 138 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 139 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 140 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 141 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_names -i 142 -d 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_get -i 143 -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- run -i 144 +[108] [Step Debug] -> + +[108] Log closed at 2024-10-21 20:41:21.264209 + +[108] Log opened at 2024-10-21 20:41:24.915726 +[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' +[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[108] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1448 +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1665 +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[108] [Step Debug] -> + +[108] [Step Debug] <- run -i 12 +[108] [Step Debug] -> + +[108] [Step Debug] -> + +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 13 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 14 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 15 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 16 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 17 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_names -i 18 -d 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_remove -i 20 -d 1080008 +[108] [Step Debug] -> + +[108] [Step Debug] <- run -i 21 +[108] [Step Debug] -> + +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 22 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 23 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 24 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 25 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 26 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_names -i 27 -d 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_get -i 28 -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_remove -i 29 -d 1080009 +[108] [Step Debug] -> + +[108] [Step Debug] <- run -i 30 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 31 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 32 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 33 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 34 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 35 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_names -i 36 -d 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_get -i 37 -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- step_over -i 38 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 39 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 40 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 41 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 42 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 43 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_names -i 44 -d 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_get -i 45 -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- eval -i 46 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZWQ0N2IyMmQwMTgwYmE5ZGRlZDQ2OGFlZTBkMTE4MWEyMGM1N2Q1NjcwYWI3YjhlYTRjZDg4ZDYyZmUxNTg3ZCddPVByZXN1cHVlc3RvU2VydmljZTo6b2J0ZW5lckNvbXBhcmFkb3JQbGFuYQ== +[108] [Step Debug] -> + +[108] [Step Debug] <- run -i 47 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 48 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 49 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 50 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 51 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 52 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_names -i 53 -d 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_get -i 54 -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- eval -i 55 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZWQ0N2IyMmQwMTgwYmE5ZGRlZDQ2OGFlZTBkMTE4MWEyMGM1N2Q1NjcwYWI3YjhlYTRjZDg4ZDYyZmUxNTg3ZCddPVByZXN1cHVlc3RvU2VydmljZTo6b2J0ZW5lckNvbXBhcmFkb3JQbGFuYQ== +[108] [Step Debug] -> + +[108] [Step Debug] <- step_into -i 56 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 57 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 58 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 59 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 60 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 61 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_names -i 62 -d 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_get -i 63 -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- step_over -i 64 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 65 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 66 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 67 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 68 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 69 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 70 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_names -i 71 -d 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_get -i 72 -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- step_over -i 73 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 74 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 75 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 76 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 77 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 78 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- step_over -i 79 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_names -i 80 -d 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 81 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_get -i 82 -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 83 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 84 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 85 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 86 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- step_over -i 87 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 88 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 89 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 90 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 91 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 92 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_names -i 93 -d 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_get -i 94 -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- step_over -i 95 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 96 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 97 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 98 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 99 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 100 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_names -i 101 -d 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_get -i 102 -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- step_over -i 103 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 104 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 105 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 106 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 107 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 108 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 109 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_names -i 110 -d 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_get -i 111 -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- step_over -i 112 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 113 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 114 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 115 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 116 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 117 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_names -i 118 -d 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_get -i 119 -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- step_over -i 120 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 121 +[108] [Step Debug] -> + +[108] [Step Debug] <- stack_get -i 122 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 123 -n "$t" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 124 -n "$data" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 125 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- property_get -i 126 -n "$datos_papel" -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_names -i 127 -d 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- context_get -i 128 -d 0 -c 0 +[108] [Step Debug] -> + +[108] [Step Debug] <- run -i 129 +[108] [Step Debug] -> + +[108] Log closed at 2024-10-21 20:42:13.746191 + +[113] Log opened at 2024-10-21 20:42:23.026995 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[113] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[113] [Step Debug] -> + +[113] [Step Debug] <- run -i 10 +[113] [Step Debug] -> + +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 11 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 12 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 13 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 14 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 15 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 16 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 17 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 18 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 19 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 20 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 21 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 22 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 23 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 24 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 25 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 26 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 27 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 28 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 29 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 30 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 31 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 32 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 33 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 34 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 35 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 36 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 37 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 38 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 39 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 40 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 41 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 42 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_into -i 43 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 44 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 45 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 46 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 47 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 48 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 49 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 50 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 51 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 52 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 53 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 54 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 55 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 56 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 57 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 58 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 59 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 60 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 61 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 62 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 63 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 64 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 65 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 66 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 67 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 68 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 69 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 70 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 71 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 72 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 73 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 74 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 75 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 76 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 77 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 78 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 79 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 80 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 81 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 82 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 83 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 84 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 85 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 86 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 87 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 88 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 89 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 90 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 91 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 92 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 93 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 94 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 95 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 96 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 97 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 98 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 99 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 100 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 101 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 102 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 103 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 104 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 105 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 106 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 107 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 108 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 109 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 110 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 111 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 112 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 113 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 114 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 115 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 116 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 117 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 118 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 119 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 120 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 121 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 122 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 123 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 124 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 125 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 126 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 127 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 128 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 129 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 130 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 131 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 132 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 133 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 134 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 135 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 136 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 137 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 138 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 139 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 140 -n "$opciones_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 141 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 142 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 143 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 144 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 145 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 146 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 147 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 148 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 149 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 150 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 151 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 152 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 153 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 154 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 155 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 156 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 157 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 158 -n "$papeles" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 159 -n "$papeles[0]" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 160 -n "$input_data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 161 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 162 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 163 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 164 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 165 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 166 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 167 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 168 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 169 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 170 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 171 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 172 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 173 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 174 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 175 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 176 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 177 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 178 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 179 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 180 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 181 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 182 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 183 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 184 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 185 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 186 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 187 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 188 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 189 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 190 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 191 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 192 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 193 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 194 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 195 -n "$maquinas" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 196 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 197 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 198 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 199 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 200 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 201 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 202 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 203 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 204 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 205 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 206 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 207 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 208 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 209 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 210 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 211 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 212 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 213 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_into -i 214 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 215 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 216 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 217 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 218 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 219 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 220 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 221 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 222 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 223 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 224 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 225 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 226 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 227 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 228 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 229 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 230 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 231 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 232 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 233 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 234 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 235 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 236 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 237 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 238 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 239 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 240 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 241 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 242 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 243 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 244 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 245 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 246 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 247 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 248 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 249 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 250 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 251 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 252 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 253 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 254 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 255 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 256 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 257 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 258 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 259 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 260 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 261 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 262 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 263 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 264 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 265 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 266 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 267 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 268 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 269 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 270 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 271 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 272 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 273 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 274 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 275 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 276 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 277 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 278 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 279 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 280 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 281 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 282 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 283 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 284 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 285 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 286 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 287 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 288 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 289 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 290 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 291 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 292 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 293 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 294 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 295 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 296 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 297 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 298 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 299 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 300 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 301 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 302 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 303 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 304 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 305 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 306 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 307 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 308 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 309 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 310 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 311 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 312 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 313 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 314 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 315 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 316 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 317 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 318 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 319 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 320 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 321 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 322 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 323 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 324 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 325 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 326 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 327 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 328 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 329 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 330 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 331 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 332 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 333 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 334 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 335 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 336 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 337 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 338 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 339 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 340 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 341 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 342 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 343 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 344 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 345 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 346 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 347 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 348 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 349 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 350 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 351 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 352 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 353 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 354 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 355 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 356 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 357 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 358 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 359 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 360 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 361 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 362 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 363 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 364 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 365 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 366 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 367 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 368 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 369 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 370 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- step_over -i 371 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 372 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 373 -n "$t" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 374 -n "$data" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 375 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 376 -n "$datos_papel" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 377 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 378 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 379 -n "$maquinas[0]" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- run -i 380 +[113] [Step Debug] -> + +[113] Log closed at 2024-10-21 20:44:02.964312 + +[114] Log opened at 2024-10-21 20:44:26.985424 +[114] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.114' +[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[87] Log opened at 2024-10-21 20:44:26.995982 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[117] Log opened at 2024-10-21 20:44:27.006375 +[117] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.117' +[117] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[110] Log opened at 2024-10-21 20:44:27.017806 +[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' +[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[102] Log opened at 2024-10-21 20:44:27.029914 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[112] Log opened at 2024-10-21 20:44:27.047782 +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[117] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[102] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[102] [Step Debug] -> + +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[102] [Step Debug] -> + +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[102] [Step Debug] -> + +[102] [Step Debug] <- run -i 11 +[102] [Step Debug] -> + +[102] Log closed at 2024-10-21 20:44:41.344227 + +[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[114] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[114] [Step Debug] -> + +[114] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[114] [Step Debug] -> + +[114] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[114] [Step Debug] -> + +[114] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[114] [Step Debug] -> + +[114] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[114] [Step Debug] -> + +[114] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[114] [Step Debug] -> + +[114] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[114] [Step Debug] -> + +[114] [Step Debug] -> + +[114] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[114] [Step Debug] -> + +[114] [Step Debug] -> + +[114] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[114] [Step Debug] -> + +[114] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[114] [Step Debug] -> + +[114] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[114] [Step Debug] -> + +[114] [Step Debug] <- run -i 11 +[114] [Step Debug] -> + +[114] Log closed at 2024-10-21 20:45:00.984959 + +[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[87] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[87] [Step Debug] -> + +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[87] [Step Debug] -> + +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[87] [Step Debug] -> + +[87] [Step Debug] <- run -i 11 +[87] [Step Debug] -> + +[87] Log closed at 2024-10-21 20:45:15.834101 + +[116] Log opened at 2024-10-21 20:45:28.054545 +[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116' +[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[116] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[116] [Step Debug] -> + +[116] [Step Debug] <- run -i 11 +[117] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[117] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[117] [Step Debug] -> + +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[117] [Step Debug] -> + +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[117] [Step Debug] -> + +[117] [Step Debug] <- run -i 11 +[117] [Step Debug] -> + +[117] Log closed at 2024-10-21 20:45:31.234051 + +[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[110] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[110] [Step Debug] -> + +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[110] [Step Debug] -> + +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[110] [Step Debug] -> + +[110] [Step Debug] <- run -i 11 +[110] [Step Debug] -> + +[110] Log closed at 2024-10-21 20:45:46.364634 + +[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[112] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[112] [Step Debug] -> + +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[112] [Step Debug] -> + +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[112] [Step Debug] -> + +[112] [Step Debug] <- run -i 11 +[112] [Step Debug] -> + +[112] Log closed at 2024-10-21 20:46:01.967035 + +[116] [Step Debug] -> + +[116] Log closed at 2024-10-21 20:46:02.797885 + +[116] Log opened at 2024-10-21 20:46:02.977436 +[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116' +[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[116] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[116] [Step Debug] -> + +[116] [Step Debug] <- run -i 11 +[116] [Step Debug] -> + +[116] Log closed at 2024-10-21 20:46:03.185627 + +[108] Log opened at 2024-10-21 20:46:03.824620 +[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' +[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[108] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[108] [Step Debug] -> + +[113] Log opened at 2024-10-21 20:46:03.837062 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[113] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[108] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[113] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[113] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[108] [Step Debug] -> + +[113] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[113] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[108] [Step Debug] -> + +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 10 -n extended_properties -v 1 +[113] [Step Debug] -> + +[102] Log opened at 2024-10-21 20:46:03.859654 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[102] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[102] [Step Debug] -> + +[108] [Step Debug] <- run -i 11 +[102] [Step Debug] <- run -i 6 +[113] [Step Debug] <- run -i 11 +[113] [Step Debug] -> + +[113] Log closed at 2024-10-21 20:46:04.426288 + +[108] [Step Debug] -> + +[108] Log closed at 2024-10-21 20:46:04.812952 + +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[102] [Step Debug] -> + +[102] Log closed at 2024-10-21 20:46:04.942655 + +[118] Log opened at 2024-10-21 20:46:04.982657 +[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' +[118] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[118] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[118] [Step Debug] -> + +[118] [Step Debug] <- run -i 11 +[118] [Step Debug] -> + +[118] Log closed at 2024-10-21 20:46:06.040345 + +[108] Log opened at 2024-10-21 20:46:06.068114 +[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' +[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[108] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[108] [Step Debug] -> + +[118] Log opened at 2024-10-21 20:46:06.129009 +[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' +[118] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[118] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[118] [Step Debug] -> + +[113] Log opened at 2024-10-21 20:46:06.146074 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[113] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[113] [Step Debug] -> + +[108] [Step Debug] <- run -i 11 +[118] [Step Debug] <- run -i 6 +[113] [Step Debug] <- run -i 6 +[102] Log opened at 2024-10-21 20:46:06.185593 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[102] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[102] [Step Debug] -> + +[102] [Step Debug] <- run -i 9 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[113] [Step Debug] -> + +[113] Log closed at 2024-10-21 20:46:19.876930 + +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[118] [Step Debug] -> + +[118] Log closed at 2024-10-21 20:46:35.105257 + +[108] [Step Debug] -> + +[108] Log closed at 2024-10-21 20:46:35.328999 + +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[102] [Step Debug] -> + +[102] Log closed at 2024-10-21 20:46:51.527118 + +[110] Log opened at 2024-10-21 20:47:40.265517 +[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' +[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[110] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[110] [Step Debug] -> + +[110] [Step Debug] <- run -i 12 +[110] [Step Debug] -> + +[110] [Step Debug] -> + +[110] Log closed at 2024-10-21 20:47:41.555564 + +[110] Log opened at 2024-10-21 20:47:41.692371 +[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' +[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[110] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[110] [Step Debug] -> + +[110] [Step Debug] <- run -i 12 +[110] [Step Debug] -> + +[110] Log closed at 2024-10-21 20:47:41.876122 + +[112] Log opened at 2024-10-21 20:47:42.234654 +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[112] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[112] [Step Debug] -> + +[110] Log opened at 2024-10-21 20:47:42.258634 +[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' +[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[116] Log opened at 2024-10-21 20:47:42.261361 +[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116' +[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[110] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[110] [Step Debug] -> + +[116] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[116] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[110] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[116] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[110] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[116] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[110] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[110] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[110] [Step Debug] -> + +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[116] [Step Debug] -> + +[110] [Step Debug] <- run -i 6 +[116] [Step Debug] <- run -i 6 +[112] [Step Debug] <- run -i 12 +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[110] [Step Debug] -> + +[110] Log closed at 2024-10-21 20:47:42.800085 + +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[116] [Step Debug] -> + +[116] Log closed at 2024-10-21 20:47:42.937015 + +[116] Log opened at 2024-10-21 20:47:42.984597 +[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116' +[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[116] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[116] [Step Debug] -> + +[116] [Step Debug] <- run -i 12 +[112] [Step Debug] -> + +[112] Log closed at 2024-10-21 20:47:43.436888 + +[116] [Step Debug] -> + +[116] [Step Debug] -> + +[116] Log closed at 2024-10-21 20:47:44.126669 + +[112] Log opened at 2024-10-21 20:47:44.164243 +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[112] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[112] [Step Debug] -> + +[116] Log opened at 2024-10-21 20:47:44.238505 +[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116' +[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[116] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[116] [Step Debug] -> + +[110] Log opened at 2024-10-21 20:47:44.255827 +[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' +[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[110] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[112] [Step Debug] <- run -i 12 +[116] [Step Debug] <- run -i 6 +[110] [Step Debug] -> + +[110] [Step Debug] <- run -i 6 +[114] Log opened at 2024-10-21 20:47:44.356730 +[114] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.114' +[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[114] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[114] [Step Debug] -> + +[114] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[114] [Step Debug] -> + +[114] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[114] [Step Debug] -> + +[114] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[114] [Step Debug] -> + +[114] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[114] [Step Debug] -> + +[114] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[114] [Step Debug] -> + +[114] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[114] [Step Debug] -> + +[114] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[114] [Step Debug] -> + +[114] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[114] [Step Debug] -> + +[114] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[114] [Step Debug] -> + +[114] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[114] [Step Debug] -> + +[114] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[114] [Step Debug] -> + +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[116] [Step Debug] -> + +[116] Log closed at 2024-10-21 20:48:00.297082 + +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[110] [Step Debug] -> + +[110] Log closed at 2024-10-21 20:48:16.075360 + +[112] [Step Debug] -> + +[112] Log closed at 2024-10-21 20:48:16.306951 + +[114] [Step Debug] <- stop -i 12 +[114] [Step Debug] -> + +[113] Log opened at 2024-10-21 20:48:37.923400 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[113] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[113] [Step Debug] -> + +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[113] [Step Debug] -> + +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[113] [Step Debug] -> + +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[113] [Step Debug] -> + +[113] [Step Debug] <- run -i 12 +[113] [Step Debug] -> + +[113] Log closed at 2024-10-21 20:48:56.725197 + +[118] Log opened at 2024-10-21 20:49:04.462693 +[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' +[118] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[118] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[118] [Step Debug] -> + +[118] [Step Debug] <- run -i 12 +[118] [Step Debug] -> + +[118] [Step Debug] -> + +[118] Log closed at 2024-10-21 20:49:05.988796 + +[118] Log opened at 2024-10-21 20:49:06.179412 +[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' +[118] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[118] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[118] [Step Debug] -> + +[118] [Step Debug] <- run -i 12 +[118] [Step Debug] -> + +[118] Log closed at 2024-10-21 20:49:06.361387 + +[108] Log opened at 2024-10-21 20:49:06.825160 +[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' +[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[108] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[108] [Step Debug] -> + +[118] Log opened at 2024-10-21 20:49:06.835391 +[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' +[118] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[118] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] -> + +[102] Log opened at 2024-10-21 20:49:06.836628 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[118] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[118] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[102] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[108] [Step Debug] -> + +[102] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[118] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[102] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[118] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[118] [Step Debug] -> + +[108] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[102] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[118] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[108] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[102] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 11 -n extended_properties -v 1 +[118] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 10 -n extended_properties -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- run -i 11 +[108] [Step Debug] <- run -i 12 +[118] [Step Debug] <- run -i 12 +[118] [Step Debug] -> + +[118] Log closed at 2024-10-21 20:49:07.444068 + +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[102] [Step Debug] -> + +[102] Log closed at 2024-10-21 20:49:07.598656 + +[102] Log opened at 2024-10-21 20:49:07.647769 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[102] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[102] [Step Debug] -> + +[102] [Step Debug] <- run -i 12 +[108] [Step Debug] -> + +[108] Log closed at 2024-10-21 20:49:08.068993 + +[102] [Step Debug] -> + +[102] [Step Debug] -> + +[102] Log closed at 2024-10-21 20:49:08.741155 + +[108] Log opened at 2024-10-21 20:49:08.788790 +[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' +[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[108] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[108] [Step Debug] -> + +[102] Log opened at 2024-10-21 20:49:08.858084 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[102] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[102] [Step Debug] -> + +[118] Log opened at 2024-10-21 20:49:08.876167 +[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' +[118] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[118] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[118] [Step Debug] -> + +[108] [Step Debug] <- run -i 12 +[102] [Step Debug] <- run -i 6 +[118] [Step Debug] <- run -i 6 +[107] Log opened at 2024-10-21 20:49:08.923093 +[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' +[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[107] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[107] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[107] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[107] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[107] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[107] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[107] [Step Debug] -> + +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[102] [Step Debug] -> + +[102] Log closed at 2024-10-21 20:49:23.271644 + +[107] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[107] [Step Debug] -> + +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[118] [Step Debug] -> + +[118] Log closed at 2024-10-21 20:49:48.513739 + +[110] Log opened at 2024-10-21 20:49:50.659253 +[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' +[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[110] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[110] [Step Debug] -> + +[112] Log opened at 2024-10-21 20:50:06.904538 +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[112] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[112] [Step Debug] -> + +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[108] [Step Debug] -> + +[108] Log closed at 2024-10-21 20:50:07.715578 + +[107] [Step Debug] <- stop -i 13 +[110] [Step Debug] <- stop -i 13 +[107] [Step Debug] -> + +[110] [Step Debug] -> + +[112] [Step Debug] <- stop -i 13 +[112] [Step Debug] -> + +[102] Log opened at 2024-10-21 20:50:14.767882 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[102] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[102] [Step Debug] -> + +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[102] [Step Debug] -> + +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[102] [Step Debug] -> + +[102] [Step Debug] <- run -i 13 +[102] [Step Debug] -> + +[102] Log closed at 2024-10-21 20:50:17.088526 + +[102] Log opened at 2024-10-21 20:50:17.376517 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[102] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[102] [Step Debug] -> + +[102] [Step Debug] <- run -i 13 +[102] [Step Debug] -> + +[102] Log closed at 2024-10-21 20:50:17.620750 + +[118] Log opened at 2024-10-21 20:50:18.119380 +[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' +[118] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[118] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[118] [Step Debug] -> + +[118] [Step Debug] <- run -i 13 +[102] Log opened at 2024-10-21 20:50:18.305111 +[113] Log opened at 2024-10-21 20:50:18.305113 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[113] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] -> + +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[102] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[113] [Step Debug] -> + +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[102] [Step Debug] -> + +[113] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[102] [Step Debug] -> + +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[102] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[102] [Step Debug] -> + +[113] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[113] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[102] [Step Debug] -> + +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[113] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[102] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[113] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[102] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[102] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[102] [Step Debug] -> + +[113] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[113] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[102] [Step Debug] -> + +[113] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[113] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[102] [Step Debug] -> + +[113] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[113] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[113] [Step Debug] -> + +[102] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[102] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[102] [Step Debug] -> + +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[113] [Step Debug] -> + +[113] [Step Debug] <- run -i 15 +[102] [Step Debug] <- run -i 15 +[102] [Step Debug] -> + +[102] Log closed at 2024-10-21 20:50:18.894660 + +[118] [Step Debug] -> + +[118] Log closed at 2024-10-21 20:50:19.972604 + +[113] [Step Debug] -> + +[113] Log closed at 2024-10-21 20:50:20.326158 + +[108] Log opened at 2024-10-21 20:50:20.369823 +[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' +[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[108] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[108] [Step Debug] -> + +[108] [Step Debug] <- run -i 13 +[108] [Step Debug] -> + +[108] [Step Debug] -> + +[108] [Step Debug] -> + +[108] Log closed at 2024-10-21 20:50:22.616245 + +[118] Log opened at 2024-10-21 20:50:22.651817 +[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' +[118] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[118] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[118] [Step Debug] -> + +[108] Log opened at 2024-10-21 20:50:22.729056 +[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' +[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[108] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[108] [Step Debug] -> + +[102] Log opened at 2024-10-21 20:50:22.745148 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[102] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[102] [Step Debug] -> + +[108] [Step Debug] <- run -i 6 +[118] [Step Debug] <- run -i 13 +[102] [Step Debug] <- run -i 6 +[113] Log opened at 2024-10-21 20:50:22.792990 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[113] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[113] [Step Debug] -> + +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[102] [Step Debug] -> + +[102] Log closed at 2024-10-21 20:51:01.608001 + +[113] [Step Debug] <- stop -i 13 +[113] [Step Debug] -> + +[119] Log opened at 2024-10-21 20:51:12.911145 +[119] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.119' +[119] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[119] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[119] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[118] [Step Debug] -> + +[118] [Step Debug] <- stop -i 14 +[118] [Step Debug] -> + +[118] Log closed at 2024-10-21 20:51:26.802550 + +[119] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[119] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[119] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[119] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[119] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[119] Log closed at 2024-10-21 20:51:27.397146 + +[24] Log opened at 2024-10-22 06:56:44.070376 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 13 +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] Log closed at 2024-10-22 06:56:45.893634 + +[23] Log opened at 2024-10-22 06:56:46.033807 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 13 +[23] [Step Debug] -> + +[23] Log closed at 2024-10-22 06:56:46.222321 + +[23] Log opened at 2024-10-22 06:56:46.533100 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[23] [Step Debug] -> + +[26] Log opened at 2024-10-22 06:56:46.542975 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-10-22 06:56:46.544443 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[22] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[23] [Step Debug] -> + +[22] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[26] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[26] [Step Debug] <- feature_set -i 6 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[23] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 5 -n notify_ok -v 1 +[22] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 7 -n extended_properties -v 1 +[26] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 6 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[23] [Step Debug] -> + +[26] [Step Debug] -> + +[22] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[26] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[26] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[26] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 12 -n extended_properties -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 13 +[23] [Step Debug] <- run -i 13 +[26] [Step Debug] <- run -i 13 +[26] [Step Debug] -> + +[26] Log closed at 2024-10-22 06:56:47.106185 + +[23] [Step Debug] -> + +[23] Log closed at 2024-10-22 06:56:48.872375 + +[22] [Step Debug] -> + +[22] Log closed at 2024-10-22 06:56:49.216351 + +[26] Log opened at 2024-10-22 06:56:49.263808 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 13 +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] Log closed at 2024-10-22 06:56:51.503691 + +[26] Log opened at 2024-10-22 06:56:51.535770 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[23] Log opened at 2024-10-22 06:56:51.689356 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[23] [Step Debug] -> + +[22] Log opened at 2024-10-22 06:56:51.710291 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[22] [Step Debug] -> + +[27] Log opened at 2024-10-22 06:56:51.771531 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[23] [Step Debug] <- run -i 6 +[22] [Step Debug] <- run -i 6 +[26] [Step Debug] <- run -i 13 +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[27] [Step Debug] -> + +[26] [Step Debug] -> + +[26] Log closed at 2024-10-22 06:56:52.835655 + +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[22] [Step Debug] -> + +[22] Log closed at 2024-10-22 06:57:31.222881 + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[23] [Step Debug] -> + +[23] Log closed at 2024-10-22 06:58:09.033798 + +[27] [Step Debug] <- stop -i 13 +[27] [Step Debug] -> + +[25] Log opened at 2024-10-22 07:00:16.026761 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log opened at 2024-10-22 07:00:39.511915 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[25] [Step Debug] -> + +[25] [Step Debug] <- run -i 14 +[25] [Step Debug] -> + +[25] Log closed at 2024-10-22 07:00:55.333404 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 14 +[24] [Step Debug] -> + +[24] Log closed at 2024-10-22 07:00:56.832687 + +[24] Log opened at 2024-10-22 07:00:57.007678 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 14 +[24] [Step Debug] -> + +[24] Log closed at 2024-10-22 07:00:57.186358 + +[29] Log opened at 2024-10-22 07:00:57.406724 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[29] [Step Debug] -> + +[29] [Step Debug] <- run -i 14 +[24] Log opened at 2024-10-22 07:00:57.617483 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[30] Log opened at 2024-10-22 07:00:57.657805 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- run -i 6 +[24] [Step Debug] <- run -i 14 +[24] [Step Debug] -> + +[24] Log closed at 2024-10-22 07:00:58.130214 + +[29] [Step Debug] -> + +[29] Log closed at 2024-10-22 07:00:59.176718 + +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[30] [Step Debug] -> + +[30] Log closed at 2024-10-22 07:00:59.502178 + +[29] Log opened at 2024-10-22 07:00:59.549119 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[29] [Step Debug] -> + +[29] [Step Debug] <- run -i 14 +[29] [Step Debug] -> + +[29] [Step Debug] -> + +[29] [Step Debug] -> + +[29] [Step Debug] -> + +[29] Log closed at 2024-10-22 07:01:01.800835 + +[29] Log opened at 2024-10-22 07:01:01.836576 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[29] [Step Debug] -> + +[30] Log opened at 2024-10-22 07:01:01.908140 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[30] [Step Debug] -> + +[29] [Step Debug] <- run -i 14 +[30] [Step Debug] <- run -i 6 +[24] Log opened at 2024-10-22 07:01:01.930685 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[24] [Step Debug] -> + +[26] Log opened at 2024-10-22 07:01:01.972516 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[26] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[26] [Step Debug] -> + +[24] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[26] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[24] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 8 -n extended_properties -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[24] [Step Debug] -> + +[26] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[22] Log opened at 2024-10-22 07:01:34.530579 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[30] [Step Debug] -> + +[30] Log closed at 2024-10-22 07:01:41.336853 + +[29] [Step Debug] -> + +[29] Log closed at 2024-10-22 07:01:41.815546 + +[25] Log opened at 2024-10-22 07:02:31.047060 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[25] [Step Debug] -> + +[22] [Step Debug] <- run -i 14 +[25] [Step Debug] <- run -i 14 +[26] [Step Debug] <- run -i 14 +[24] [Step Debug] <- run -i 14 +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 15 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 16 -n "$t" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 17 -n "$data" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 18 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 19 -n "$datos_papel" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 20 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 21 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- stop -i 22 +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] Log closed at 2024-10-22 07:02:35.109883 + +[22] [Step Debug] -> + +[22] [Step Debug] <- stop -i 15 +[22] [Step Debug] -> + +[22] Log closed at 2024-10-22 07:02:35.498263 + +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- stop -i 15 +[25] [Step Debug] -> + +[25] Log closed at 2024-10-22 07:02:35.708581 + +[25] Log opened at 2024-10-22 07:02:35.873438 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] -> + +[26] [Step Debug] <- stop -i 15 +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] Log closed at 2024-10-22 07:02:35.978196 + +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-22 07:02:36.543662 + +[31] Log opened at 2024-10-22 07:02:36.796178 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-10-22 07:02:36.800757 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] Log opened at 2024-10-22 07:02:36.814746 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-10-22 07:02:36.990493 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 07:02:37.779167 + +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-10-22 07:02:37.825933 + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-10-22 07:02:39.076363 + +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-22 07:02:39.840217 + +[32] Log opened at 2024-10-22 07:02:42.546412 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-10-22 07:02:44.186726 + +[32] Log opened at 2024-10-22 07:02:44.315843 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-10-22 07:02:44.969502 + +[32] Log opened at 2024-10-22 07:02:45.185099 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] Log opened at 2024-10-22 07:02:45.195586 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] Log opened at 2024-10-22 07:02:45.215450 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-10-22 07:02:45.354429 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-22 07:02:46.191208 + +[29] Log closed at 2024-10-22 07:02:46.194733 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-10-22 07:02:47.452817 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-22 07:02:48.208869 + +[32] Log opened at 2024-10-22 07:02:51.770457 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-10-22 07:02:54.028409 + +[32] Log opened at 2024-10-22 07:02:54.155537 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-10-22 07:02:54.803192 + +[32] Log opened at 2024-10-22 07:02:55.061120 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-10-22 07:02:55.214466 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-10-22 07:02:55.218605 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 07:02:56.190264 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-10-22 07:02:57.441795 + +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-22 07:02:57.981020 + +[22] Log opened at 2024-10-22 07:02:58.023537 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 07:03:00.680112 + +[22] Log opened at 2024-10-22 07:03:00.711519 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-10-22 07:03:00.768910 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-10-22 07:03:00.782770 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] Log opened at 2024-10-22 07:03:00.807532 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 07:03:02.339713 + +[31] Log opened at 2024-10-22 07:03:18.288191 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log opened at 2024-10-22 07:03:30.248940 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[25] [Step Debug] -> + +[25] [Step Debug] <- run -i 15 +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 15 +[26] [Step Debug] -> + +[26] Log closed at 2024-10-22 07:03:41.600612 + +[28] Log opened at 2024-10-22 07:03:53.131249 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[28] [Step Debug] <- run -i 15 +[29] Log opened at 2024-10-22 07:04:14.101393 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[29] [Step Debug] -> + +[29] [Step Debug] <- run -i 15 +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-10-22 07:04:19.593171 + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] -> + +[25] [Step Debug] <- stop -i 16 +[25] [Step Debug] -> + +[25] Log closed at 2024-10-22 07:04:58.652500 + +[29] [Step Debug] -> + +[29] [Step Debug] <- stop -i 16 +[29] [Step Debug] -> + +[29] Log closed at 2024-10-22 07:04:58.659257 + +[28] [Step Debug] -> + +[28] [Step Debug] <- stop -i 16 +[28] [Step Debug] -> + +[28] Log closed at 2024-10-22 07:04:58.674958 + +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-10-22 07:04:59.296506 + +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 07:04:59.758570 + +[22] Log opened at 2024-10-22 07:05:07.852160 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 07:05:09.441855 + +[22] Log opened at 2024-10-22 07:05:09.516101 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 07:05:10.169219 + +[23] Log opened at 2024-10-22 07:05:10.251225 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-10-22 07:05:10.266565 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 07:05:11.224899 + +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 07:05:12.502524 + +[22] Log opened at 2024-10-22 07:05:15.886003 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 15 +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] Log closed at 2024-10-22 07:05:17.043545 + +[23] Log opened at 2024-10-22 07:05:17.111479 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 15 +[23] [Step Debug] -> + +[23] Log closed at 2024-10-22 07:05:17.351960 + +[23] Log opened at 2024-10-22 07:05:17.468363 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[23] [Step Debug] -> + +[22] Log opened at 2024-10-22 07:05:17.478240 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[23] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[22] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[22] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[22] [Step Debug] -> + +[23] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 9 -n extended_properties -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[23] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[23] [Step Debug] -> + +[22] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[22] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[23] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[22] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[22] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[22] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[22] [Step Debug] <- run -i 15 +[23] [Step Debug] <- run -i 15 +[25] Log opened at 2024-10-22 07:05:17.594394 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- run -i 6 +[22] [Step Debug] -> + +[22] Log closed at 2024-10-22 07:05:18.007783 + +[23] [Step Debug] -> + +[23] Log closed at 2024-10-22 07:05:19.220766 + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[25] [Step Debug] -> + +[25] Log closed at 2024-10-22 07:05:19.786286 + +[26] Log opened at 2024-10-22 07:05:25.510015 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 15 +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] Log closed at 2024-10-22 07:05:27.414701 + +[26] Log opened at 2024-10-22 07:05:27.485420 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 15 +[26] [Step Debug] -> + +[26] Log closed at 2024-10-22 07:05:27.672863 + +[27] Log opened at 2024-10-22 07:05:27.809795 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[27] [Step Debug] -> + +[28] Log opened at 2024-10-22 07:05:27.816940 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[24] Log opened at 2024-10-22 07:05:27.823117 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[27] [Step Debug] -> + +[24] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[24] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[24] [Step Debug] -> + +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[27] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[27] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[27] [Step Debug] -> + +[24] [Step Debug] -> + +[28] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[24] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[28] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 6 -n max_data -v 8192 +[24] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 9 -n extended_properties -v 1 +[28] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 7 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[28] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[27] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[27] [Step Debug] -> + +[28] [Step Debug] -> + +[24] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[24] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[28] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[28] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 13 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[24] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 14 -n extended_properties -v 1 +[24] [Step Debug] -> + +[27] [Step Debug] <- run -i 15 +[24] [Step Debug] <- run -i 15 +[28] [Step Debug] <- run -i 15 +[28] [Step Debug] -> + +[28] Log closed at 2024-10-22 07:05:28.366023 + +[27] [Step Debug] -> + +[27] Log closed at 2024-10-22 07:05:29.581659 + +[24] [Step Debug] -> + +[24] Log closed at 2024-10-22 07:05:29.931224 + +[28] Log opened at 2024-10-22 07:05:29.979874 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[28] [Step Debug] <- run -i 15 +[28] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] -> + +[28] Log closed at 2024-10-22 07:05:32.177142 + +[28] Log opened at 2024-10-22 07:05:32.202917 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[27] Log opened at 2024-10-22 07:05:32.270689 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[27] [Step Debug] -> + +[24] Log opened at 2024-10-22 07:05:32.287189 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 6 +[28] [Step Debug] <- run -i 15 +[27] [Step Debug] <- run -i 6 +[26] Log opened at 2024-10-22 07:05:32.317987 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 13 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 14 -n extended_properties -v 1 +[26] [Step Debug] -> + +[22] Log opened at 2024-10-22 07:05:44.831626 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[28] [Step Debug] -> + +[27] [Step Debug] -> + +[27] Log closed at 2024-10-22 07:05:57.983862 + +[28] Log closed at 2024-10-22 07:05:57.986035 + +[22] Log opened at 2024-10-22 07:06:10.565649 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 15 +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] Log closed at 2024-10-22 07:06:12.407606 + +[22] Log opened at 2024-10-22 07:06:12.498634 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 15 +[22] [Step Debug] -> + +[22] Log closed at 2024-10-22 07:06:12.670299 + +[23] Log opened at 2024-10-22 07:06:12.838091 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] Log opened at 2024-10-22 07:06:12.843851 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[23] [Step Debug] -> + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[23] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[22] Log opened at 2024-10-22 07:06:12.847803 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[24] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[22] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[22] [Step Debug] -> + +[24] [Step Debug] -> + +[23] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[22] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[22] [Step Debug] -> + +[24] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[22] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[24] [Step Debug] -> + +[22] [Step Debug] -> + +[23] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[22] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1 +[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[24] [Step Debug] -> + +[22] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[23] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 9 -n extended_properties -v 1 +[22] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[22] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[22] [Step Debug] -> + +[23] [Step Debug] -> + +[24] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[22] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[23] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[22] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[23] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[22] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[22] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[22] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[23] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[24] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[23] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[24] [Step Debug] -> + +[22] [Step Debug] -> + +[23] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[24] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[23] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[22] [Step Debug] -> + +[24] [Step Debug] -> + +[23] [Step Debug] -> + +[22] [Step Debug] <- run -i 17 +[23] [Step Debug] <- run -i 17 +[24] [Step Debug] <- run -i 17 +[24] [Step Debug] -> + +[24] Log closed at 2024-10-22 07:06:13.364084 + +[23] [Step Debug] -> + +[23] Log closed at 2024-10-22 07:06:14.549472 + +[22] [Step Debug] -> + +[22] Log closed at 2024-10-22 07:06:14.893230 + +[24] Log opened at 2024-10-22 07:06:14.933383 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 15 +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] Log closed at 2024-10-22 07:06:17.043547 + +[24] Log opened at 2024-10-22 07:06:17.073487 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 15 +[23] Log opened at 2024-10-22 07:06:17.144048 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[23] [Step Debug] -> + +[22] Log opened at 2024-10-22 07:06:17.163644 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[23] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[22] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[23] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 6 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 +[22] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[23] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 13 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 14 -n extended_properties -v 1 +[22] [Step Debug] -> + +[25] Log opened at 2024-10-22 07:06:17.225668 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[25] [Step Debug] -> + +[22] [Step Debug] <- run -i 15 +[23] [Step Debug] <- run -i 15 +[25] [Step Debug] <- run -i 6 +[24] [Step Debug] -> + +[24] Log closed at 2024-10-22 07:06:18.253153 + +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 16 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 17 -n "$t" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 18 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 19 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 20 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 21 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 22 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- step_over -i 23 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 24 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 25 -n "$t" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 26 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 27 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 28 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 29 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 30 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- step_over -i 31 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 32 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 33 -n "$t" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 34 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 35 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 36 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- step_over -i 37 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 38 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 39 -n "$t" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 40 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 41 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 42 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- step_over -i 43 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 44 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 45 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 46 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 47 -n "$t" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 48 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 49 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 50 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- step_over -i 51 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 52 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 53 -n "$t" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 54 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 55 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 56 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- step_over -i 57 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 58 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 59 -n "$t" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 60 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 61 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 62 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- step_over -i 63 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 64 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 65 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 66 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 67 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 68 -n "$t" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 69 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 70 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 71 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 72 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 73 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- step_over -i 74 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 75 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 76 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 77 -n "$t" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 78 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 79 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 80 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 81 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 82 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- step_over -i 83 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 84 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 85 -n "$t" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 86 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 87 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 88 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- step_over -i 89 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 90 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 91 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 92 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 93 -n "$t" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 94 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 95 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 96 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- step_over -i 97 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 98 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 99 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 100 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 101 -n "$t" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 102 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 103 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 104 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- step_over -i 105 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 106 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 107 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 108 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 109 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 110 -n "$t" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 111 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 112 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 113 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 114 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 115 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- step_over -i 116 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 117 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 118 -n "$t" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 119 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 120 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 121 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 122 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 123 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_remove -i 124 -d 220028 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 125 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 126 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 127 -n "$t" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 128 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 129 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 130 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 131 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 132 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- step_over -i 133 +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 134 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 135 -n "$t" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 136 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 137 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 138 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 139 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 140 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- eval -i 141 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnM2U3ZmY1MWIxYTdjZDc4NjJlYmNmYTY3MGNmZGEyOGRhNDNhYjIwZmZkZGJlOTEzNmU0NDVmODgzMmJmNDc2OSddPVByZXN1cHVlc3RvU2VydmljZTo6Z2V0QW5jaG9Ub3RhbEV4dGVyaW9yZXM= +[23] [Step Debug] -> + +[23] [Step Debug] <- step_over -i 142 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 143 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 144 -n "$t" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 145 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 146 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 147 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 148 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 149 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 150 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 151 -n "$datosPedido->altoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 152 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 153 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 154 -n "$t" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 155 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 156 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 157 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 158 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 159 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_remove -i 160 -d 220033 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 161 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 162 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 163 -n "$t" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 164 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 165 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 166 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 167 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 168 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 169 -n "$uso" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 170 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 171 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 172 -n "$t" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 173 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 174 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 175 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 176 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 177 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 178 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 179 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 180 -n "$t" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 181 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 182 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 183 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 184 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 185 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 186 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 187 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 188 -n "$t" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 189 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 190 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 191 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 192 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 193 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 194 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 195 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 196 -n "$t" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 197 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 198 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 199 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 200 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 201 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 202 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 203 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 204 -n "$t" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 205 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 206 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 207 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 208 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 209 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- step_over -i 210 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 211 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 212 -n "$t" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 213 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 214 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 215 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 216 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 217 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 218 -n "$datosPedido" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 219 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 220 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 221 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 222 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 223 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 224 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 225 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 226 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 227 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 228 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 229 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 230 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 231 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 232 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 233 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 234 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 235 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 236 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 237 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 238 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 239 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 240 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 241 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- step_into -i 242 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 243 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 244 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 245 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 246 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 247 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 248 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 249 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- step_over -i 250 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 251 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 252 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 253 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 254 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 255 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 256 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 257 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- step_over -i 258 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 259 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 260 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 261 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 262 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 263 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 264 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 265 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- step_over -i 266 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 267 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 268 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 269 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 270 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 271 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 272 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 273 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- step_over -i 274 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 275 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 276 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 277 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 278 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 279 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 280 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 281 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- step_over -i 282 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 283 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 284 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 285 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 286 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 287 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 288 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 289 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- step_over -i 290 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 291 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 292 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 293 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 294 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 295 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 296 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 297 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- step_over -i 298 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 299 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 300 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 301 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 302 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 303 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 304 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 305 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- step_over -i 306 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 307 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 308 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 309 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 310 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 311 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 312 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 313 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- step_over -i 314 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 315 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 316 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 317 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 318 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 319 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 320 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 321 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 322 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 323 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 324 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 325 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 326 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 327 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 328 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 329 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 330 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 331 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 332 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 333 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 334 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 335 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 336 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 337 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 338 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 339 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 340 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 341 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 342 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 343 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 344 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 345 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 346 -n "$uso" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 347 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 348 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 349 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 350 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 351 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 352 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 353 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 354 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 355 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 356 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 357 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 358 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 359 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 360 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 361 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 362 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 363 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 364 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 365 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 366 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 367 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 368 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 369 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 370 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 371 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 372 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 373 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 374 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 375 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 376 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 377 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 378 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 379 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 380 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 381 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 382 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 383 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 384 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 385 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 386 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 387 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 388 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 389 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 390 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 391 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 392 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 393 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 394 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 395 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 396 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 397 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 398 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 399 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 400 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 401 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 402 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 403 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 404 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 405 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 406 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 407 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 408 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 409 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 410 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 411 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 412 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 413 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 414 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 415 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 416 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 417 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 418 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 419 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 420 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 421 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 422 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 423 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 424 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 425 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 426 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 427 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 428 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 429 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 430 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 431 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 432 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 433 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 434 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 435 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 436 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 437 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 438 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 439 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 440 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 441 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 442 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 443 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 444 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 445 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 446 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 447 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 448 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 449 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 450 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 451 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 452 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 453 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 454 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 455 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 456 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 457 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 458 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 459 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 460 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 461 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 462 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 463 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 464 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 465 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 466 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 467 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 468 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 469 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 470 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 471 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 472 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 473 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 474 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 475 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 476 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 477 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 478 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 479 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 480 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 481 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 482 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 483 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 484 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 485 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 486 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 487 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 488 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 489 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 490 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 491 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 492 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 493 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 494 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 495 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 496 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 497 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 498 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 499 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 500 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 501 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 502 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 503 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 504 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 505 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 506 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 507 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 508 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 509 -n "$uso" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 510 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 511 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 512 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 513 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 514 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 515 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 516 -n "$uso" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 517 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 518 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 519 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 520 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 521 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 522 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 523 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 524 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 525 -n "$uso" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 526 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 527 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 528 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 529 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 530 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 531 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 532 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 533 -n "$uso" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 534 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 535 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 536 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 537 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 538 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 539 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 540 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 541 -n "$uso" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 542 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 543 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 544 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 545 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 546 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 547 -n "$uso" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 548 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 549 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 550 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 551 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 552 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 553 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 554 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 555 -n "$uso" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 556 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 557 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 558 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 559 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 560 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 561 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 562 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 563 -n "$uso" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 564 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 565 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 566 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 567 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 568 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 569 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 570 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 571 -n "$uso" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 572 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 573 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 574 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 575 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 576 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 577 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 578 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 579 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 580 -n "$uso" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 581 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 582 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 583 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 584 -n "$return_data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 585 -n "$return_data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- step_over -i 586 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 587 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 588 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 589 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 590 -n "$uso" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 591 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 592 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 593 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 594 +[23] [Step Debug] -> + +[23] Log closed at 2024-10-22 07:10:15.560416 + +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_remove -i 16 -d 220028 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_remove -i 17 -d 220033 +[22] [Step Debug] -> + +[22] [Step Debug] <- stack_get -i 18 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 19 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 20 -n "$data" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 21 -n "$uso" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 22 -n "$datos_papel" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_names -i 23 -d 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_get -i 24 -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 25 +[22] [Step Debug] -> + +[22] [Step Debug] <- stack_get -i 26 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 27 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 28 -n "$data" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 29 -n "$uso" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 30 -n "$datos_papel" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_names -i 31 -d 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_get -i 32 -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 33 +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] <- stack_get -i 34 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 35 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 36 -n "$data" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 37 -n "$uso" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 38 -n "$datos_papel" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_names -i 39 -d 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_get -i 40 -d 0 -c 0 +[22] [Step Debug] -> + +[27] Log opened at 2024-10-22 07:10:43.352359 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 +[25] [Step Debug] -> + +[25] Log closed at 2024-10-22 07:11:11.029027 + +[22] Log opened at 2024-10-22 07:11:25.093062 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 13 +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] Log closed at 2024-10-22 07:11:26.949729 + +[22] Log opened at 2024-10-22 07:11:27.070715 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 13 +[22] [Step Debug] -> + +[22] Log closed at 2024-10-22 07:11:27.253643 + +[23] Log opened at 2024-10-22 07:11:27.413991 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[23] [Step Debug] -> + +[22] Log opened at 2024-10-22 07:11:27.426008 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[22] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[23] [Step Debug] -> + +[22] [Step Debug] -> + +[24] Log opened at 2024-10-22 07:11:27.430216 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[22] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[22] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[23] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[23] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[23] [Step Debug] -> + +[24] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[24] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Parse error" +[23] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[24] [Step Debug] -> + +[23] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Unknown error" +[23] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[23] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 6 -n max_data -v 8192 +[24] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 12 -n extended_properties -v 1 +[22] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 7 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 9 -n extended_properties -v 1 +[24] [Step Debug] -> + +[23] [Step Debug] <- run -i 13 +[22] [Step Debug] <- run -i 13 +[24] [Step Debug] <- run -i 10 +[22] [Step Debug] -> + +[22] Log closed at 2024-10-22 07:11:27.930129 + +[23] [Step Debug] -> + +[23] Log closed at 2024-10-22 07:11:29.209886 + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[24] [Step Debug] -> + +[24] Log closed at 2024-10-22 07:11:29.567245 + +[23] Log opened at 2024-10-22 07:11:29.609082 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 13 +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] Log closed at 2024-10-22 07:11:31.756728 + +[23] Log opened at 2024-10-22 07:11:31.789987 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 13 +[24] Log opened at 2024-10-22 07:11:31.860973 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[24] [Step Debug] -> + +[22] Log opened at 2024-10-22 07:11:31.881905 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[22] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[24] [Step Debug] -> + +[25] Log opened at 2024-10-22 07:11:31.918530 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[22] [Step Debug] -> + +[24] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[24] [Step Debug] -> + +[22] [Step Debug] -> + +[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[25] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[24] [Step Debug] -> + +[22] [Step Debug] -> + +[25] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Fatal error" +[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[25] [Step Debug] -> + +[22] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[24] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Parse error" +[22] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[25] [Step Debug] -> + +[22] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Unknown error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 9 -n max_children -v 100 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 10 -n max_data -v 8192 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 11 -n notify_ok -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 12 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 13 -n extended_properties -v 1 +[25] [Step Debug] -> + +[24] [Step Debug] <- run -i 14 +[22] [Step Debug] <- run -i 14 +[25] [Step Debug] <- run -i 14 +[23] [Step Debug] -> + +[23] Log closed at 2024-10-22 07:11:32.880712 + +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] <- stack_get -i 15 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 16 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 17 -n "$data" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 18 -n "$uso" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 19 -n "$datos_papel" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_names -i 20 -d 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_get -i 21 -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 22 +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] <- stack_get -i 23 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 24 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 25 -n "$data" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 26 -n "$uso" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 27 -n "$datos_papel" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_names -i 28 -d 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_get -i 29 -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_remove -i 30 -d 220025 +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 31 +[22] [Step Debug] -> + +[22] [Step Debug] <- stack_get -i 32 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 33 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 34 -n "$data" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 35 -n "$uso" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 36 -n "$datos_papel" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_names -i 37 -d 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_get -i 38 -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 39 +[22] [Step Debug] -> + +[22] [Step Debug] <- stack_get -i 40 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 41 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 42 -n "$data" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 43 -n "$uso" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 44 -n "$datos_papel" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_names -i 45 -d 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_get -i 46 -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 47 +[22] [Step Debug] -> + +[22] Log closed at 2024-10-22 07:12:25.832109 + +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_remove -i 15 -d 220025 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 16 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 17 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 18 -n "$data" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 19 -n "$uso" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 20 -n "$datos_papel" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 21 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 22 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 23 +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 24 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 25 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 26 -n "$data" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 27 -n "$uso" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 28 -n "$datos_papel" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 29 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 30 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 31 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 32 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 33 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 34 -n "$data" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 35 -n "$uso" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 36 -n "$datos_papel" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 37 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 38 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_remove -i 39 -d 220025 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_remove -i 40 -d 240007 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_remove -i 41 -d 240005 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 42 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 43 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 44 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 45 -n "$data" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 46 -n "$uso" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 47 -n "$datos_papel" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 48 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 49 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 50 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 51 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 52 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 53 -n "$data" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 54 -n "$uso" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 55 -n "$datos_papel" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 56 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 57 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 58 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 59 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 60 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 61 -n "$data" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 62 -n "$uso" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 63 -n "$datos_papel" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 64 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 65 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 66 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 67 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 68 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 69 -n "$data" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 70 -n "$uso" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 71 -n "$datos_papel" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 72 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 73 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 74 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 75 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 76 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 77 -n "$data" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 78 -n "$uso" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 79 -n "$datos_papel" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 80 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 81 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- stop -i 82 +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] Log closed at 2024-10-22 07:13:43.463086 + +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_remove -i 15 -d 220025 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_remove -i 16 -d 220025 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_remove -i 17 -d 250007 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_remove -i 18 -d 250005 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_remove -i 19 -d 250007 +[25] [Step Debug] -> + +[25] [Step Debug] <- stop -i 20 +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] Log closed at 2024-10-22 07:13:43.952211 + +[27] Log opened at 2024-10-22 07:13:49.816604 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[27] [Step Debug] <- run -i 10 +[27] [Step Debug] -> + +[27] [Step Debug] -> + +[27] Log closed at 2024-10-22 07:13:51.667554 + +[27] Log opened at 2024-10-22 07:13:51.866678 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[27] [Step Debug] <- run -i 10 +[27] [Step Debug] -> + +[27] Log closed at 2024-10-22 07:13:52.040888 + +[22] Log opened at 2024-10-22 07:13:52.591403 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[22] [Step Debug] -> + +[29] Log opened at 2024-10-22 07:13:52.603631 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[22] [Step Debug] -> + +[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[29] [Step Debug] -> + +[23] Log opened at 2024-10-22 07:13:52.608805 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" +[29] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[29] [Step Debug] -> + +[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[29] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 8 -n extended_properties -v 1 +[29] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[23] [Step Debug] -> + +[22] [Step Debug] <- run -i 10 +[29] [Step Debug] <- run -i 9 +[23] [Step Debug] <- run -i 6 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[29] [Step Debug] -> + +[29] Log closed at 2024-10-22 07:13:53.129448 + +[22] [Step Debug] -> + +[22] Log closed at 2024-10-22 07:13:54.441369 + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[23] [Step Debug] -> + +[23] Log closed at 2024-10-22 07:13:54.782123 + +[22] Log opened at 2024-10-22 07:13:54.826922 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 10 +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] Log closed at 2024-10-22 07:13:56.980130 + +[22] Log opened at 2024-10-22 07:13:57.007382 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 10 +[22] [Step Debug] -> + +[22] Log closed at 2024-10-22 07:13:58.192185 + +[26] Log opened at 2024-10-22 07:15:27.168239 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 10 +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] Log closed at 2024-10-22 07:15:29.050929 + +[26] Log opened at 2024-10-22 07:15:29.203563 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 10 +[26] [Step Debug] -> + +[26] Log closed at 2024-10-22 07:15:29.344513 + +[31] Log opened at 2024-10-22 07:15:29.609627 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 10 +[33] Log opened at 2024-10-22 07:15:29.778975 +[32] Log opened at 2024-10-22 07:15:29.778974 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] -> + +[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[32] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[32] [Step Debug] -> + +[33] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[32] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[33] [Step Debug] -> + +[32] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[32] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[32] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[32] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[32] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[33] [Step Debug] <- run -i 10 +[32] [Step Debug] <- run -i 10 +[33] [Step Debug] -> + +[33] Log closed at 2024-10-22 07:15:30.308288 + +[31] [Step Debug] -> + +[31] Log closed at 2024-10-22 07:15:31.405506 + +[32] [Step Debug] -> + +[32] Log closed at 2024-10-22 07:15:31.765432 + +[33] Log opened at 2024-10-22 07:15:31.819149 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 10 +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] Log closed at 2024-10-22 07:15:34.151413 + +[29] Log opened at 2024-10-22 07:15:50.735910 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[29] [Step Debug] -> + +[29] [Step Debug] <- run -i 10 +[29] [Step Debug] -> + +[29] [Step Debug] -> + +[29] Log closed at 2024-10-22 07:15:52.617415 + +[29] Log opened at 2024-10-22 07:15:52.829161 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[29] [Step Debug] -> + +[29] [Step Debug] <- run -i 10 +[29] [Step Debug] -> + +[29] Log closed at 2024-10-22 07:15:52.993982 + +[28] Log opened at 2024-10-22 07:15:53.414263 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[28] [Step Debug] <- run -i 10 +[22] Log opened at 2024-10-22 07:15:53.579845 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-10-22 07:15:53.582071 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[22] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[27] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[22] [Step Debug] <- run -i 10 +[27] [Step Debug] <- run -i 10 +[22] [Step Debug] -> + +[22] Log closed at 2024-10-22 07:15:54.094993 + +[28] [Step Debug] -> + +[28] Log closed at 2024-10-22 07:15:55.210823 + +[27] [Step Debug] -> + +[27] Log closed at 2024-10-22 07:15:55.593562 + +[23] Log opened at 2024-10-22 07:15:55.633153 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 10 +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] Log closed at 2024-10-22 07:15:57.834107 + +[28] Log opened at 2024-10-22 07:15:57.867343 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[28] [Step Debug] <- run -i 10 +[28] [Step Debug] -> + +[28] Log closed at 2024-10-22 07:15:59.060764 + +[33] Log opened at 2024-10-22 07:16:54.959028 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 10 +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] Log closed at 2024-10-22 07:16:56.854186 + +[33] Log opened at 2024-10-22 07:16:57.087522 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 10 +[33] [Step Debug] -> + +[33] Log closed at 2024-10-22 07:16:57.305509 + +[22] Log opened at 2024-10-22 07:16:57.865873 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[26] Log opened at 2024-10-22 07:16:57.887874 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] Log opened at 2024-10-22 07:16:57.888525 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[34] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[34] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[34] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[34] [Step Debug] -> + +[26] [Step Debug] -> + +[22] [Step Debug] <- run -i 10 +[26] [Step Debug] <- run -i 6 +[34] [Step Debug] <- run -i 6 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[34] [Step Debug] -> + +[34] Log closed at 2024-10-22 07:16:58.379846 + +[22] [Step Debug] -> + +[22] Log closed at 2024-10-22 07:16:59.663191 + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[26] [Step Debug] -> + +[26] Log closed at 2024-10-22 07:17:00.043793 + +[23] Log opened at 2024-10-22 07:17:05.951550 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 10 +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] Log closed at 2024-10-22 07:17:08.214063 + +[23] Log opened at 2024-10-22 07:17:10.336334 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 10 +[23] [Step Debug] -> + +[23] Log closed at 2024-10-22 07:17:11.543204 + +[28] Log opened at 2024-10-22 07:19:02.134406 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[28] [Step Debug] <- run -i 10 +[28] [Step Debug] -> + +[28] [Step Debug] -> + +[28] Log closed at 2024-10-22 07:19:03.975732 + +[28] Log opened at 2024-10-22 07:19:04.168798 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[28] [Step Debug] <- run -i 10 +[28] [Step Debug] -> + +[28] Log closed at 2024-10-22 07:19:04.309388 + +[32] Log opened at 2024-10-22 07:19:04.621608 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 10 +[33] Log opened at 2024-10-22 07:19:04.938436 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] Log opened at 2024-10-22 07:19:04.938979 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[35] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[33] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[33] [Step Debug] -> + +[35] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[35] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[35] [Step Debug] -> + +[33] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 10 +[35] [Step Debug] <- run -i 10 +[33] [Step Debug] -> + +[33] Log closed at 2024-10-22 07:19:05.474224 + +[32] [Step Debug] -> + +[32] Log closed at 2024-10-22 07:19:06.488872 + +[35] [Step Debug] -> + +[35] Log closed at 2024-10-22 07:19:06.827917 + +[30] Log opened at 2024-10-22 07:20:07.517014 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[30] [Step Debug] -> + +[30] [Step Debug] <- run -i 10 +[30] [Step Debug] -> + +[30] [Step Debug] -> + +[30] Log closed at 2024-10-22 07:20:09.680153 + +[29] Log opened at 2024-10-22 07:23:16.315586 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-22 07:23:18.774120 + +[29] Log opened at 2024-10-22 07:23:18.971178 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-22 07:23:19.619547 + +[26] Log opened at 2024-10-22 07:23:20.015377 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] Log opened at 2024-10-22 07:23:20.053989 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[28] Log opened at 2024-10-22 07:23:20.053989 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-10-22 07:23:21.077122 + +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-22 07:23:22.417688 + +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-22 07:23:22.979417 + +[23] Log opened at 2024-10-22 07:23:31.134249 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 07:23:33.973568 + +[23] Log opened at 2024-10-22 07:23:34.004618 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 07:23:35.646277 + +[29] Log opened at 2024-10-22 07:23:58.918786 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-22 07:24:01.286089 + +[29] Log opened at 2024-10-22 07:24:01.459101 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-22 07:24:02.123515 + +[34] Log opened at 2024-10-22 07:24:02.512230 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] Log opened at 2024-10-22 07:24:02.607114 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] Log opened at 2024-10-22 07:24:02.611529 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-10-22 07:24:03.606568 + +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-10-22 07:24:04.850129 + +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-22 07:24:05.393759 + +[33] Log opened at 2024-10-22 07:24:05.444655 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 07:24:08.121586 + +[34] Log opened at 2024-10-22 07:24:08.151958 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-10-22 07:24:09.759756 + +[23] Log opened at 2024-10-22 07:24:44.906903 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 07:24:47.323877 + +[23] Log opened at 2024-10-22 07:24:47.458358 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 07:24:48.101693 + +[22] Log opened at 2024-10-22 07:24:48.477618 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] Log opened at 2024-10-22 07:24:48.482936 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] Log opened at 2024-10-22 07:24:48.485381 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 07:24:49.480927 + +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 07:24:50.841099 + +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 07:24:51.381723 + +[22] Log opened at 2024-10-22 07:24:51.431891 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 07:24:54.089203 + +[22] Log opened at 2024-10-22 07:24:54.184011 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 07:24:55.865694 + +[29] Log opened at 2024-10-22 07:25:30.952482 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-22 07:25:33.304423 + +[29] Log opened at 2024-10-22 07:25:33.457545 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-22 07:25:34.108220 + +[32] Log opened at 2024-10-22 07:25:34.365016 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] Log opened at 2024-10-22 07:25:34.555475 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log opened at 2024-10-22 07:25:34.566777 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-10-22 07:25:35.547952 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-10-22 07:25:36.836031 + +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-22 07:25:37.382416 + +[35] Log opened at 2024-10-22 07:25:37.424983 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-10-22 07:25:40.147074 + +[35] Log opened at 2024-10-22 07:25:40.265120 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-10-22 07:25:41.896581 + +[28] Log opened at 2024-10-22 07:26:25.885686 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-22 07:26:28.269402 + +[28] Log opened at 2024-10-22 07:26:28.532174 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-22 07:26:29.216118 + +[29] Log opened at 2024-10-22 07:26:29.616093 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] Log opened at 2024-10-22 07:26:29.791749 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] Log opened at 2024-10-22 07:26:29.812923 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 07:26:30.820589 + +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-22 07:26:32.093739 + +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 07:26:32.649238 + +[36] Log opened at 2024-10-22 07:26:32.698371 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 07:26:35.527174 + +[29] Log opened at 2024-10-22 07:26:35.569099 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-22 07:26:37.217558 + +[30] Log opened at 2024-10-22 07:26:45.823524 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-22 07:27:26.402564 + +[28] Log opened at 2024-10-22 07:28:27.880069 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[28] [Step Debug] <- run -i 10 +[28] [Step Debug] -> + +[28] [Step Debug] -> + +[28] Log closed at 2024-10-22 07:28:29.681686 + +[28] Log opened at 2024-10-22 07:28:29.901987 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[28] [Step Debug] <- run -i 10 +[28] [Step Debug] -> + +[28] Log closed at 2024-10-22 07:28:30.077237 + +[22] Log opened at 2024-10-22 07:28:30.652984 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[23] Log opened at 2024-10-22 07:28:30.718402 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[23] [Step Debug] -> + +[22] [Step Debug] <- run -i 10 +[23] [Step Debug] <- run -i 6 +[33] Log opened at 2024-10-22 07:28:30.736118 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[23] [Step Debug] -> + +[23] Log closed at 2024-10-22 07:28:31.188200 + +[22] [Step Debug] -> + +[22] Log closed at 2024-10-22 07:28:32.615778 + +[23] Log opened at 2024-10-22 07:29:13.335900 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 10 +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] Log closed at 2024-10-22 07:29:15.225120 + +[23] Log opened at 2024-10-22 07:29:15.449048 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 10 +[23] [Step Debug] -> + +[23] Log closed at 2024-10-22 07:29:15.617316 + +[24] Log opened at 2024-10-22 07:29:16.078553 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 10 +[27] Log opened at 2024-10-22 07:29:16.272982 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[22] Log opened at 2024-10-22 07:29:16.277330 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[27] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[27] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[27] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[27] [Step Debug] -> + +[22] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[27] [Step Debug] <- run -i 10 +[22] [Step Debug] <- run -i 10 +[27] [Step Debug] -> + +[27] Log closed at 2024-10-22 07:29:16.749177 + +[24] [Step Debug] -> + +[24] Log closed at 2024-10-22 07:29:17.807763 + +[22] [Step Debug] -> + +[22] Log closed at 2024-10-22 07:29:18.151647 + +[26] Log opened at 2024-10-22 07:29:18.199286 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 10 +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] Log closed at 2024-10-22 07:29:20.331056 + +[24] Log opened at 2024-10-22 07:29:20.373030 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 10 +[26] Log opened at 2024-10-22 07:29:20.495181 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 10 +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- stack_get -i 11 +[26] [Step Debug] -> + +[26] [Step Debug] <- property_get -i 12 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[26] [Step Debug] -> + +[26] [Step Debug] <- property_get -i 13 -n "$data" -d 0 -c 0 +[26] [Step Debug] -> + +[26] [Step Debug] <- property_get -i 14 -n "$uso" -d 0 -c 0 +[26] [Step Debug] -> + +[26] [Step Debug] <- property_get -i 15 -n "$datos_papel" -d 0 -c 0 +[26] [Step Debug] -> + +[26] [Step Debug] <- context_names -i 16 -d 0 +[26] [Step Debug] -> + +[26] [Step Debug] <- context_get -i 17 -d 0 -c 0 +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 18 +[26] [Step Debug] -> + +[26] Log closed at 2024-10-22 07:30:08.234102 + +[24] [Step Debug] -> + +[24] Log closed at 2024-10-22 07:30:08.703487 + +[22] Log opened at 2024-10-22 07:46:42.597796 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] Log closed at 2024-10-22 07:46:42.598575 + +[22] Log opened at 2024-10-22 07:49:35.135062 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] Log closed at 2024-10-22 07:49:35.136065 + +[22] Log opened at 2024-10-22 07:50:46.434418 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 07:50:47.792471 + +[23] Log opened at 2024-10-22 07:50:47.953921 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 07:50:48.633321 + +[23] Log opened at 2024-10-22 07:50:48.833413 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-10-22 07:50:48.850021 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-22 07:50:49.825800 + +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 07:50:50.487380 + +[23] Log opened at 2024-10-22 07:50:53.930879 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 07:50:55.212074 + +[23] Log opened at 2024-10-22 07:50:55.296179 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 07:50:55.954736 + +[23] Log opened at 2024-10-22 07:50:56.098256 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-10-22 07:50:56.104041 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-10-22 07:50:56.204592 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-22 07:50:57.282273 + +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 07:50:57.961473 + +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-22 07:50:58.467101 + +[26] Log opened at 2024-10-22 07:51:06.334270 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-22 07:51:08.259870 + +[26] Log opened at 2024-10-22 07:51:08.410488 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-22 07:51:09.059533 + +[28] Log opened at 2024-10-22 07:51:09.377457 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-10-22 07:51:09.383602 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-10-22 07:51:09.385645 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 07:51:10.668268 + +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-10-22 07:51:11.011716 + +[22] Log opened at 2024-10-22 07:51:11.059639 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-22 07:51:11.642115 + +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 07:51:12.558008 + +[28] Log opened at 2024-10-22 07:51:12.585656 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-10-22 07:51:12.733932 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-22 07:51:13.772540 + +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 07:51:32.690001 + +[24] Log opened at 2024-10-22 07:51:40.155183 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 10 +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] Log closed at 2024-10-22 07:51:41.506898 + +[24] Log opened at 2024-10-22 07:51:41.599918 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 10 +[24] [Step Debug] -> + +[24] Log closed at 2024-10-22 07:51:41.776153 + +[23] Log opened at 2024-10-22 07:51:41.955682 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[25] Log opened at 2024-10-22 07:51:41.964160 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[23] [Step Debug] -> + +[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[25] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[25] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[25] [Step Debug] -> + +[33] Log opened at 2024-10-22 07:51:41.986380 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 6 +[25] [Step Debug] <- run -i 10 +[23] [Step Debug] <- run -i 10 +[25] [Step Debug] -> + +[25] Log closed at 2024-10-22 07:51:42.451264 + +[23] [Step Debug] -> + +[23] Log closed at 2024-10-22 07:51:42.876670 + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[33] [Step Debug] -> + +[33] Log closed at 2024-10-22 07:51:43.046916 + +[25] Log opened at 2024-10-22 07:51:43.087884 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[25] [Step Debug] -> + +[25] [Step Debug] <- run -i 10 +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] Log closed at 2024-10-22 07:51:44.126688 + +[25] Log opened at 2024-10-22 07:51:44.156713 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[25] [Step Debug] -> + +[25] [Step Debug] <- run -i 10 +[23] Log opened at 2024-10-22 07:51:44.273521 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 10 +[25] [Step Debug] -> + +[25] Log closed at 2024-10-22 07:51:44.783951 + +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 11 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 12 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 13 -n "$data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 14 -n "$uso" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 15 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 16 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 17 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 18 -n "$tipo_impresion_id" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 19 -n "$cubierta" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 20 -n "$this->calcular_presupuesto" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 21 -n "$this->calcular_presupuesto" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 22 -n "$return_data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 23 -n "$return_data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 24 -n "$datos_guardas" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 25 -n "$return_data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 26 +[23] [Step Debug] -> + +[23] Log closed at 2024-10-22 07:52:57.652592 + +[26] Log opened at 2024-10-22 07:53:00.140634 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-22 07:53:01.078592 + +[32] Log opened at 2024-10-22 07:53:01.167740 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-10-22 07:53:02.085137 + +[28] Log opened at 2024-10-22 07:53:09.264285 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-22 07:53:10.199853 + +[22] Log opened at 2024-10-22 07:53:10.287073 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 07:53:11.208835 + +[24] Log opened at 2024-10-22 07:53:18.958862 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-22 07:53:19.943487 + +[30] Log opened at 2024-10-22 07:53:35.341048 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-22 07:53:37.168659 + +[30] Log opened at 2024-10-22 07:53:37.360948 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-22 07:53:38.015537 + +[31] Log opened at 2024-10-22 07:53:38.241294 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] Log opened at 2024-10-22 07:53:38.262996 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] Log opened at 2024-10-22 07:53:38.271537 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 07:53:39.264311 + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-10-22 07:53:39.833900 + +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-22 07:53:40.178008 + +[33] Log opened at 2024-10-22 07:53:40.215955 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 07:53:41.899944 + +[33] Log opened at 2024-10-22 07:53:41.930358 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-10-22 07:53:42.025920 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 07:53:43.057106 + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-10-22 07:53:58.862350 + +[23] Log opened at 2024-10-22 07:56:03.364716 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 10 +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] Log closed at 2024-10-22 07:56:04.638044 + +[26] Log opened at 2024-10-22 07:56:04.751098 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 10 +[26] [Step Debug] -> + +[26] Log closed at 2024-10-22 07:56:04.878539 + +[26] Log opened at 2024-10-22 07:56:05.072371 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[23] Log opened at 2024-10-22 07:56:05.075297 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[26] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[26] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[32] Log opened at 2024-10-22 07:56:05.081235 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[23] [Step Debug] -> + +[32] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[32] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[26] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[32] [Step Debug] -> + +[23] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[32] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[23] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[32] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[26] [Step Debug] -> + +[32] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[32] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[26] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1 +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[26] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 9 -n extended_properties -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 10 +[23] [Step Debug] <- run -i 10 +[26] [Step Debug] <- run -i 10 +[23] [Step Debug] -> + +[23] Log closed at 2024-10-22 07:56:05.629625 + +[32] [Step Debug] -> + +[32] Log closed at 2024-10-22 07:56:05.749013 + +[32] Log opened at 2024-10-22 07:56:05.800535 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 10 +[26] [Step Debug] -> + +[26] Log closed at 2024-10-22 07:56:06.165204 + +[32] [Step Debug] -> + +[32] [Step Debug] -> + +[32] Log closed at 2024-10-22 07:56:06.920200 + +[26] Log opened at 2024-10-22 07:56:06.946151 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 10 +[32] Log opened at 2024-10-22 07:56:07.061160 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 10 +[26] [Step Debug] -> + +[26] Log closed at 2024-10-22 07:56:07.561897 + +[32] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 11 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 12 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 13 -n "$data" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 14 -n "$uso" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 15 -n "$datos_papel" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 16 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 17 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 18 -n "$return_data" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 19 -n "$return_data[\"errors\"]" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 20 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 21 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 22 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 23 -n "$data" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 24 -n "$uso" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 25 -n "$datos_papel" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 26 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 27 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 28 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 29 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 30 -n "$return_data['errors']->status" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 31 -n "$uso" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 32 -n "$datos_papel" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 33 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 34 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 35 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 36 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 37 -n "$return_data['errors']->status" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 38 -n "$uso" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 39 -n "$datos_papel" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 40 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 41 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 42 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 43 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 44 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 45 -n "$return_data['errors']->status" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 46 -n "$uso" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 47 -n "$datos_papel" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 48 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 49 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 50 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 51 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 52 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 53 -n "$return_data['errors']->status" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 54 -n "$uso" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 55 -n "$datos_papel" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 56 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 57 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 58 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 436 +[32] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 59 +[32] [Step Debug] -> + +[32] Log closed at 2024-10-22 07:57:52.031604 + +[33] Log opened at 2024-10-22 08:00:36.424578 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 436 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 11 +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] Log closed at 2024-10-22 08:00:37.748050 + +[33] Log opened at 2024-10-22 08:00:37.961909 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 436 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 11 +[33] [Step Debug] -> + +[33] Log closed at 2024-10-22 08:00:38.123244 + +[23] Log opened at 2024-10-22 08:00:38.567863 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 436 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 11 +[32] Log opened at 2024-10-22 08:00:38.724809 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[31] Log opened at 2024-10-22 08:00:38.730278 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[32] [Step Debug] -> + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[32] [Step Debug] -> + +[31] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[32] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 436 +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 436 +[32] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[32] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[31] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[31] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[31] [Step Debug] -> + +[32] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 11 +[31] [Step Debug] <- run -i 11 +[32] [Step Debug] -> + +[32] Log closed at 2024-10-22 08:00:39.294039 + +[23] [Step Debug] -> + +[23] Log closed at 2024-10-22 08:00:39.703578 + +[31] [Step Debug] -> + +[31] Log closed at 2024-10-22 08:00:39.849336 + +[23] Log opened at 2024-10-22 08:00:39.888674 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 436 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 11 +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 12 +[23] [Step Debug] -> + +[23] Log closed at 2024-10-22 08:00:40.971154 + +[23] Log opened at 2024-10-22 08:00:41.011601 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-10-22 08:00:41.121285 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 08:00:42.141111 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-10-22 08:00:56.546774 + +[22] Log opened at 2024-10-22 08:02:21.806304 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 08:02:23.537365 + +[22] Log opened at 2024-10-22 08:02:23.696366 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 08:02:24.339279 + +[24] Log opened at 2024-10-22 08:02:24.668269 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] Log opened at 2024-10-22 08:02:24.670086 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] Log opened at 2024-10-22 08:02:24.671583 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-22 08:02:25.686131 + +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-10-22 08:02:26.018798 + +[30] Log opened at 2024-10-22 08:02:26.063974 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-22 08:02:26.717332 + +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-22 08:02:27.656496 + +[30] Log opened at 2024-10-22 08:02:27.684094 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-10-22 08:02:27.771082 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-22 08:02:28.813861 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-22 08:02:43.484856 + +[26] Log opened at 2024-10-22 08:03:42.199348 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-22 08:03:43.916715 + +[26] Log opened at 2024-10-22 08:03:44.074432 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-22 08:03:44.734993 + +[31] Log opened at 2024-10-22 08:03:45.111022 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] Log opened at 2024-10-22 08:03:45.146503 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-10-22 08:03:45.150543 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 08:03:46.151904 + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-10-22 08:03:46.847339 + +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-22 08:03:47.180614 + +[31] Log opened at 2024-10-22 08:03:47.227311 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-10-22 08:03:48.872683 + +[31] Log opened at 2024-10-22 08:03:48.900164 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] Log opened at 2024-10-22 08:03:48.988208 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-10-22 08:03:50.151902 + +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 08:04:06.282409 + +[23] Log opened at 2024-10-22 08:04:11.254755 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 08:04:26.371574 + +[30] Log opened at 2024-10-22 08:04:38.730133 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log opened at 2024-10-22 08:04:49.482566 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-22 08:04:54.385723 + +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 08:04:55.362043 + +[33] Log opened at 2024-10-22 08:04:55.546464 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 08:04:56.210964 + +[32] Log opened at 2024-10-22 08:04:56.545727 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-10-22 08:04:56.635814 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-10-22 08:04:56.636373 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 08:04:57.596503 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-10-22 08:04:58.184119 + +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-22 08:04:58.555489 + +[32] Log opened at 2024-10-22 08:04:58.603127 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-10-22 08:05:00.133295 + +[32] Log opened at 2024-10-22 08:05:00.159337 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-10-22 08:05:00.247825 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-10-22 08:05:01.288625 + +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 08:05:15.935672 + +[23] Log opened at 2024-10-22 08:05:45.080669 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 08:06:01.433339 + +[24] Log opened at 2024-10-22 08:06:14.175284 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-22 08:06:39.035992 + +[30] Log opened at 2024-10-22 08:15:06.325002 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-22 08:15:07.530064 + +[36] Log opened at 2024-10-22 08:15:07.612319 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 08:15:08.257615 + +[36] Log opened at 2024-10-22 08:15:08.367508 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] Log opened at 2024-10-22 08:15:08.375709 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] Log opened at 2024-10-22 08:15:08.489286 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-22 08:15:09.353594 + +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 08:15:09.965854 + +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 08:15:10.437143 + +[33] Log opened at 2024-10-22 08:15:14.524616 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 08:15:15.688355 + +[33] Log opened at 2024-10-22 08:15:17.539354 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 08:15:18.658374 + +[23] Log opened at 2024-10-22 08:18:57.226255 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 08:18:58.991716 + +[23] Log opened at 2024-10-22 08:18:59.206751 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 08:18:59.870789 + +[25] Log opened at 2024-10-22 08:19:00.352417 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-10-22 08:19:00.365091 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[30] Log opened at 2024-10-22 08:19:00.365109 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-22 08:19:01.361757 + +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-22 08:19:01.694665 + +[36] Log opened at 2024-10-22 08:19:01.741398 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-22 08:19:02.320948 + +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 08:19:03.457502 + +[25] Log opened at 2024-10-22 08:19:03.489048 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] Log opened at 2024-10-22 08:19:03.590276 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-22 08:19:04.612943 + +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 08:19:21.391353 + +[26] Log opened at 2024-10-22 08:19:33.978731 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-22 08:19:50.933823 + +[32] Log opened at 2024-10-22 08:20:05.224291 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-10-22 08:20:24.013395 + +[22] Log opened at 2024-10-22 08:21:33.110553 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 08:21:34.808524 + +[22] Log opened at 2024-10-22 08:21:34.949765 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 08:21:35.589917 + +[37] Log opened at 2024-10-22 08:21:35.882618 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] Log opened at 2024-10-22 08:21:36.015076 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-10-22 08:21:36.018313 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 08:21:36.993393 + +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-10-22 08:21:37.664502 + +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 08:21:38.015870 + +[23] Log opened at 2024-10-22 08:21:38.063420 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 08:21:39.582166 + +[33] Log opened at 2024-10-22 08:22:52.807133 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 08:22:54.532989 + +[33] Log opened at 2024-10-22 08:22:54.684566 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 08:22:55.331298 + +[24] Log opened at 2024-10-22 08:22:55.703065 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] Log opened at 2024-10-22 08:22:55.715895 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-10-22 08:22:55.715895 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-22 08:22:56.727726 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-22 08:22:57.292968 + +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-22 08:22:57.630985 + +[25] Log opened at 2024-10-22 08:22:57.680714 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-22 08:22:59.208279 + +[26] Log opened at 2024-10-22 08:27:50.775347 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-22 08:27:52.463507 + +[26] Log opened at 2024-10-22 08:27:52.628527 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-22 08:27:53.272972 + +[32] Log opened at 2024-10-22 08:27:53.693795 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-10-22 08:27:53.699207 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[37] Log opened at 2024-10-22 08:27:53.699207 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-10-22 08:27:54.707659 + +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-22 08:27:55.040494 + +[37] Log opened at 2024-10-22 08:27:55.085463 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-10-22 08:27:55.680030 + +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-10-22 08:27:56.574308 +