diff --git a/ci4/app/Config/Routes.php b/ci4/app/Config/Routes.php index bda1e487..a9baa5bc 100644 --- a/ci4/app/Config/Routes.php +++ b/ci4/app/Config/Routes.php @@ -414,6 +414,7 @@ $routes->group('clienteusuarios', ['namespace' => 'App\Controllers\Clientes'], f $routes->group('misdirecciones', ['namespace' => 'App\Controllers\Clientes'], function ($routes) { $routes->get('', 'Clientedirecciones::index', ['as' => 'clientedireccionesIndex']); $routes->get('get/(:num)', 'Clientedirecciones::get/$1', ['as' => 'get']); + $routes->get('getDireccionPresupuesto/(:num)', 'Clientedirecciones::getDireccionPresupuesto/$1', ['as' => 'getDireccionPresupuesto']); $routes->post('add', 'Clientedirecciones::add', ['as' => 'newClientedirecciones']); $routes->get('getSelect2', 'Clientedirecciones::getSelect2', ['as' => 'listaClientedirecciones']); }); diff --git a/ci4/app/Controllers/Clientes/Clientedirecciones.php b/ci4/app/Controllers/Clientes/Clientedirecciones.php index 5553987a..872eeeca 100755 --- a/ci4/app/Controllers/Clientes/Clientedirecciones.php +++ b/ci4/app/Controllers/Clientes/Clientedirecciones.php @@ -229,6 +229,25 @@ class Clientedirecciones extends \App\Controllers\BaseResourceController } } + public function getDireccionPresupuesto($id) + { + try { + $model = model('App\Models\Presupuestos\PresupuestoDireccionesModel'); + $resourceData = $model->getDireccion($id); + $response = (object)[ + 'error' => false, + 'data' => $resourceData + ]; + return $this->respond($response); + } catch (\Exception $e) { + $response = (object)[ + 'error' => true, + 'message' => $e->getMessage() + ]; + return $this->fail($response); + } + } + public function datatable_editor() { if ($this->request->isAJAX()) { diff --git a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php index e801f1df..0d656c75 100755 --- a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php +++ b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php @@ -994,74 +994,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController 'data' => $data ]); } - ; - /* - - if (this.datos.tipo == "cosido") { - this.datos.paginasCuadernillo = this.datosGenerales.paginasCuadernillo.val(); - } - - - } - ////////////////////////// - this.datos = { - - - tamanio: this.datosGenerales.getDimensionLibro(), - tirada: this.datosGenerales.getTiradas(), - paginas: this.datosGenerales.paginas.val(), - paginasColor: this.datosGenerales.paginasColor.val(), - paginasCuadernillo: this.datosGenerales.paginasCuadernillo.val(), - papelInteriorDiferente: this.datosGenerales.papelDiferente.is(':checked') ? 1 : 0, - - tipo: this.datosGenerales.tiposLibro.filter('.selected').attr('id'), - - isColor: this.datosGenerales.getIsColor() ? 1 : 0, - isHq: this.disenioInterior.getIsHq() ? 1 : 0, - - interior: { - papelInterior: this.disenioInterior.getPapel(), - gramajeInterior: this.disenioInterior.getGramaje(), - }, - - cubierta: { - tipoCubierta: this.disenioCubierta.disenioCubierta.filter('.selected').attr('id'), - papelCubierta: this.disenioCubierta.getPapel(), - gramajeCubierta: this.disenioCubierta.getGramaje(), - cabezada: this.disenioCubierta.getCabezada(), - acabados: this.disenioCubierta.getAcabados(), - carasImpresion: this.disenioCubierta.carasCubierta.val(), - }, - - guardas: this.disenioCubierta.getGuardas(), - sobrecubierta: this.disenioCubierta.getSobrecubierta(), - faja: this.disenioCubierta.getFaja(), - - - let solapasCubierta = this.disenioCubierta.getSolapasCubierta(); - if (solapasCubierta !== null && solapasCubierta !== undefined) { - - if (solapasCubierta === false) - this.datos.cubierta.solapas = 0; - else { - this.datos.cubierta.solapas = 1; - this.datos.cubierta.tamanioSolapas = solapasCubierta; - } - } - else { - this.datos.cubierta.solapas = 0; - } - - if (this.direcciones.direcciones.length > 0) { - this.datos.direcciones = []; - for (let i = 0; i < this.direcciones.direcciones.length; i++) { - this.datos.direcciones.push(this.direcciones.direcciones[i].getFormData()); - }; - } - - } - ////////////////////////////////////////////////////////*/ } else { return $this->failUnauthorized('Invalid request', 403); diff --git a/ci4/app/Models/Presupuestos/PresupuestoDireccionesModel.php b/ci4/app/Models/Presupuestos/PresupuestoDireccionesModel.php index f89ddfd3..90da4d00 100755 --- a/ci4/app/Models/Presupuestos/PresupuestoDireccionesModel.php +++ b/ci4/app/Models/Presupuestos/PresupuestoDireccionesModel.php @@ -123,4 +123,21 @@ class PresupuestoDireccionesModel extends \App\Models\BaseModel return $builder; } + public function getDireccion($id = -1) + { + $builder = $this->db + ->table($this->table . " t1") + ->select( + "t1.id AS id, t1.att AS att, + t1.email AS email, t1.direccion AS direccion, t1.pais_id AS pais_id, t3.nombre AS pais, + t1.municipio AS municipio, t1.provincia AS provincia, t1.cp AS cp, t1.telefono AS telefono" + ); + + $builder->where('t1.id', $id); + $builder->join("lg_paises t3", "t1.pais_id = t3.id", "left"); + + + return $builder->get()->getResultObject(); + } + } diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js index 36d163c8..45819d5d 100644 --- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js +++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js @@ -111,7 +111,37 @@ class DatosGenerales { message: window.translations["validation"].integer_greatherThan_0, callback: function (input) { const value = $("#tirada").val(); - return value.length > 0 && Number.isInteger(parseInt(value)) && parseInt(value) > 0; + const value2 = $("#tirada2").val(); + const value3 = $("#tirada3").val(); + const value4 = $("#tirada4").val(); + let tiradas = [value]; + + if(!(value.length > 0 && Number.isInteger(parseInt(value)) && parseInt(value) > 0)){ + return { + valid: false, + message: window.translations["validation"].integer_greatherThan_0, + }; + } + if(value2.length > 0 && Number.isInteger(parseInt(value2)) && parseInt(value2) > 0){ + tiradas.push(value2); + } + if(value3.length > 0 && Number.isInteger(parseInt(value3)) && parseInt(value3) > 0){ + tiradas.push(value3); + } + if(value4.length > 0 && Number.isInteger(parseInt(value4)) && parseInt(value4) > 0){ + tiradas.push(value4); + } + // comprobar si hay valores > 30 + const noPOD = (tiradas.some(tirada => parseInt(tirada) > 30)); + const siPOD = (tiradas.some(tirada => parseInt(tirada) <= 30)); + if(noPOD && siPOD){ + return { + valid: false, + message: "No se pueden mezclar tiradas <30 con >30", + } + } + + return true; }, } } diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/direcciones.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/direcciones.js index 0d344745..f3370f61 100644 --- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/direcciones.js +++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/direcciones.js @@ -19,7 +19,7 @@ class Direcciones { this.entregaPieCallero = this.domItem.find('#entregaPieCalle'); this.direccionesCliente = new ClassSelect($("#direcciones"), '/misdirecciones/getSelect2'); - + this.divDirecciones = $(this.domItem.find('#divDirecciones')); this.divTiradas = this.domItem.find('#containerTiradasEnvios'); @@ -63,6 +63,7 @@ class Direcciones { tiradas_envio.sort((a, b) => a - b); setTimeout(() => { + tiradas_envio.forEach(tirada => { self.insertTirada(tirada); }); @@ -91,7 +92,7 @@ class Direcciones { if (unidades == null || unidades <= 0 || unidades == undefined) return; - let peticion = new Ajax('/misdirecciones/get/' + id, {}, {}, + let peticion = new Ajax('/misdirecciones/getDireccionPresupuesto/' + id, {}, {}, (response) => { let tarjeta = new tarjetaDireccion(this.divDirecciones, divId, response.data[0]); tarjeta.setUnidades(unidades); @@ -179,16 +180,6 @@ class Direcciones { } - getDirecciones() { - - let direcciones = this.divDirecciones.find('.direccion-cliente') - if (direcciones.length > 0) { - direcciones.forEach(element => { - - }); - } - } - insertTirada(tirada) { const self = this; diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/disenioCubierta.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/disenioCubierta.js index fa8148c8..d3d85a9d 100644 --- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/disenioCubierta.js +++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/disenioCubierta.js @@ -174,7 +174,7 @@ class DisenioCubierta { }, 0); } - if (datosSobrecubierta) { + if(datosSobrecubierta && datosSobrecubierta.papel) { this.sobrecubierta.trigger('click'); this.papelSobrecubierta.val(datosSobrecubierta.papel.code + "_" + datosSobrecubierta.gramaje).trigger('change'); this.solapasSobrecubierta.val(datosSobrecubierta.solapas_ancho); diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js index 9e906b68..11861c1e 100644 --- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js +++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js @@ -79,12 +79,49 @@ class PresupuestoCliente { } $(".calcular-presupuesto").on('change', this.checkForm.bind(this)); + } + + #checkTiradas() { + + let tiradas = [parseInt(this.datosGenerales.tirada1.val())]; + + if (this.datosGenerales.tirada2.val().length > 0 && + Number.isInteger(parseInt(this.datosGenerales.tirada2.val())) && + parseInt(this.datosGenerales.tirada2.val()) > 0 && + this.datosGenerales.tirada2.val() != "") { + + tiradas.push(parseInt(this.datosGenerales.tirada2.val())); + } + if (this.datosGenerales.tirada3.val().length > 0 && + Number.isInteger(parseInt(this.datosGenerales.tirada3.val())) && + parseInt(this.datosGenerales.tirada3.val()) > 0 && + this.datosGenerales.tirada3.val() != "") { + + tiradas.push(parseInt(this.datosGenerales.tirada3.val())); + } + if (this.datosGenerales.tirada4.val().length > 0 && + Number.isInteger(parseInt(this.datosGenerales.tirada4.val())) && + parseInt(this.datosGenerales.tirada4.val()) > 0 && + this.datosGenerales.tirada4.val() != "") { + + tiradas.push(parseInt(this.datosGenerales.tirada4.val())); + } + + const noPOD = (tiradas.some(tirada => parseInt(tirada) > 30)); + const siPOD = (tiradas.some(tirada => parseInt(tirada) <= 30)); + + this.datosGenerales.formValidation.validateField('tirada'); + return !(noPOD && siPOD); } checkForm(event) { + if (!this.#checkTiradas()) { + return; + } + if (this.calcularPresupuesto) { if (event.target.id === 'divDirecciones') { @@ -273,7 +310,7 @@ class PresupuestoCliente { $('#loader').modal('hide'); - if(response === null || response === undefined || response === ""){ + if (response === null || response === undefined || response === "") { 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; @@ -285,9 +322,9 @@ class PresupuestoCliente { return; } } - else { - popAlert2Hide(); - } + + popAlert2Hide(); + if (response.tiradas && response.tiradas.length) { @@ -466,11 +503,6 @@ class PresupuestoCliente { 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' } }); diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/resumen.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/resumen.js index 667d39a9..a829db0b 100644 --- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/resumen.js +++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/resumen.js @@ -65,17 +65,18 @@ class Resumen { #btnPreview() { - if(this.divPreview.hasClass('d-none')){ + if (this.divPreview.hasClass('d-none')) { this.btnPreviewCubierta.text('Ocultar desarrollo cubierta'); this.divPreview.removeClass('d-none'); this.generate(); } - else{ + else { this.btnPreviewCubierta.text('Mostrar desarrollo cubierta'); this.divPreview.addClass('d-none'); } } + generate() { this.titulo.text(this.datosGenerales.titulo.val()); @@ -94,9 +95,12 @@ class Resumen { this.formato.text(this.datosGenerales.papelFormatoId.find('option:selected').text()); } + + this.divPreview.empty(); + new previewFormas( - this.divPreview, - this.datosGenerales.tiposLibro.filter('.selected').attr('id'), + this.divPreview, + this.datosGenerales.tiposLibro.filter('.selected').attr('id'), this.disenioCubierta.disenioCubierta.filter('.selected').attr('id'), "resumen", { @@ -174,20 +178,43 @@ class Resumen { const tarjetaPrecio = $('.tarjeta-tiradas-precios').filter(function () { return parseInt($(this).find('.tarjeta-tiradas-precios-tirada').attr('data')) == unidades; }); - this.precio_unidad.text(tarjetaPrecio.find('.tarjeta-tiradas-precios-precio-unidad').attr('data')); + + + let precio_u_text = tarjetaPrecio.find('.tarjeta-tiradas-precios-precio-unidad').text(); + precio_u_text = precio_u_text.replace('€/u', ''); + precio_u_text = this.#changeDecimalFormat(precio_u_text); + const base = tarjetaPrecio.find('.tarjeta-tiradas-precios-precio').attr('data'); + let base_text = this.#changeDecimalFormat(base); + const iva_porcentaje = this.datosGenerales.ivaReducido.find('option:selected').val() == 1 ? 0.21 : 0.04; const iva = (parseFloat(base) * iva_porcentaje).toFixed(2); - this.total_base.text(base); + let iva_text = this.#changeDecimalFormat(iva); + + const total = (parseFloat(base) + parseFloat(iva)).toFixed(2); + let total_text = this.#changeDecimalFormat(total); + + this.precio_unidad.text(precio_u_text); + this.total_base.text(base_text); this.iva_porcentaje.text(this.datosGenerales.ivaReducido.find('option:selected').val() == 1 ? '21' : '4'); - this.iva.text(iva); - this.total.text((parseFloat(base) + parseFloat(iva)).toFixed(2)); + this.iva.text(iva_text); + this.total.text(total_text); } + #capitalizeFirstLetter(string) { return string.charAt(0).toUpperCase() + string.slice(1); } + + + #changeDecimalFormat(number) { + + let cleanedNumber = String(number).replace(/[^\d.]/g, ''); + let partes = cleanedNumber.split('.'); + partes[0] = partes[0].replace(/(\d)(?=(\d{3})+(?!\d))/g, '$1.'); + return partes.join(','); + } } export default Resumen; \ No newline at end of file diff --git a/httpdocs/assets/js/safekat/pages/preview.js b/httpdocs/assets/js/safekat/pages/preview.js index 8e7fef3a..d5feed42 100644 --- a/httpdocs/assets/js/safekat/pages/preview.js +++ b/httpdocs/assets/js/safekat/pages/preview.js @@ -26,12 +26,12 @@ class previewFormas { } else if (this.tipoLibro.includes("espiral") || this.tipoLibro.includes("wire-o")) { if (this.tipoTapa.includes("dura")) - this.#portadaEspiral(isThumbnail, true); + this.#portadaEspiral(true); else - this.#portadaEspiral(isThumbnail, false); + this.#portadaEspiral(false); } else if (this.tipoLibro.includes("grapado")) { - portadaGrapado(isThumbnail); + this.#portadaGrapado(); } } @@ -369,7 +369,7 @@ class previewFormas { #portadaEspiral(isTapaDura = false) { // Variables locales - let altoLibro, anchoLibro, anchoCalle, anchoCubierta, altoSangrado, anchoSangrado, anchoSolapa, offsetCubierta; + let altoLibro, anchoLibro, anchoCalle, altoSangrado, anchoSangrado, anchoSolapa, offsetCubierta, anchoCubierta; let styleCotas = { size: 12, family: 'Public Sans' }; let sangradoTexto = (isTapaDura) ? "Sangrado 20 mm" : "Sangrado 5 mm"; let sangradoValor = (isTapaDura) ? parseFloat(20) : parseFloat(5); // mm @@ -377,7 +377,7 @@ class previewFormas { // Definicion de los parametros del Esquema de Cubierta (EC) if ((anchoSolapa !== 0) && (!isTapaDura)) { - if (isThumbnail) { + if (this.size == "thumbnail") { anchoSangrado = 350; // px altoSangrado = (anchoSangrado * 0.647 > 300) ? 300 : anchoSangrado * 0.647; // px } else { @@ -440,7 +440,7 @@ class previewFormas { solapa2.linewidth = 1; // Cotas y textos - if (!isThumbnail) { + if (this.size != "thumbnail") { // Cotas var cotaSolapa2 = previewEC.makeDobleArrow( origenEC.x - (anchoCalle / 2 + sangradoValor + anchoLibro + anchoSolapa), @@ -462,8 +462,8 @@ class previewFormas { 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); + previewEC.makeText((anchoSolapa).toFixed(1) + " mm", origenEC.x - anchoLibro - (anchoCalle + anchoSolapa) / 2, origenEC.y - (altoLibro / 3) + 15, styleCotas); + previewEC.makeText(anchoSolapa.toFixed(1) + " mm", origenEC.x + anchoLibro + (anchoCalle + anchoSolapa) / 2, origenEC.y - (altoLibro / 3) + 15, styleCotas); } } @@ -495,7 +495,7 @@ class previewFormas { calle.linewidth = 1; // Cotas y textos - if (!isThumbnail) { + if (this.size != "thumbnail") { // Cotas: var cotaAnchoCubierta = previewEC.makeDobleArrow( origenEC.x - (anchoSangrado / 2), @@ -564,7 +564,7 @@ class previewFormas { origenEC.y, styleCotas ).rotation = -Math.PI / 2; - previewEC.makeText(((2 * anchoLibro) + lomoLibro + (2 * sangradoValor)).toFixed(1) + " mm", + previewEC.makeText(((2 * anchoLibro) + this.lomo + (2 * sangradoValor)).toFixed(1) + " mm", origenEC.x, origenEC.y + (altoLibro / 2) + 50, styleCotas); @@ -573,6 +573,180 @@ class previewFormas { previewEC.update(); } + + + #portadaGrapado() { + + // Variables locales + let altoLibro, anchoLibro, lomoLibro, anchoSolapa, anchoCubierta, altoSangrado, anchoSangrado; + let styleCotas = { size: 12, family: 'Public Sans' }; + let sangradoTexto = "Sangrado 5 mm"; + let sangradoValor = parseFloat(5); // mm + let offsetSolapaValor = parseFloat(0); // mm + + // Definicion de los parametros del Esquema de Cubierta (EC) + if (anchoSolapa == 0) { + if (this.size == "thumbnail") { + anchoSangrado = 350; // px + altoSangrado = (anchoSangrado * 0.647 > 300) ? 300 : anchoSangrado * 0.647; // px + } else { + anchoSangrado = 750; // px + altoSangrado = (anchoSangrado * 0.647 > 650) ? 650 : anchoSangrado * 0.647; // px + } + altoLibro = altoSangrado * 0.97; + anchoLibro = anchoSangrado * 0.48; + anchoSolapa = 0; + lomoLibro = 0; // ESTA ES LA DIFERENCIA PARA GRAPADO + anchoCubierta = (2 * anchoLibro) + (2 * anchoSolapa) + lomoLibro; + + } else { + if (this.size == "thumbnail") { + anchoSangrado = 350; // px + altoSangrado = (anchoSangrado * 0.647 > 300) ? 300 : anchoSangrado * 0.647; // px + } else { + anchoSangrado = 750; // px + altoSangrado = (anchoSangrado * 0.647 > 650) ? 650 : anchoSangrado * 0.647; // px + } + altoLibro = altoSangrado * 0.95; + anchoLibro = anchoSangrado * 0.3; + anchoSolapa = anchoSangrado * 0.18; + lomoLibro = 0; // ESTA ES LA DIFERENCIA PARA GRAPADO + anchoCubierta = (2 * anchoLibro) + (2 * anchoSolapa) + lomoLibro; + } + + 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) { + var solapas = previewEC.makeRectangle( + origenEC.x, + origenEC.y, + anchoCubierta, + altoLibro); + solapas.stroke = 'black'; + solapas.linewidth = 1; + + // Cotas y textos + if (this.size != "thumbnail") { + // Cotas + var cotaSolapa2 = previewEC.makeDobleArrow( + origenEC.x - anchoCubierta / 2, + origenEC.y - (altoLibro / 3), + origenEC.x - anchoLibro - lomoLibro / 2, + origenEC.y - (altoLibro / 3), + 10); + cotaSolapa2.linewidth = 2; + var cotaSolapa1 = previewEC.makeDobleArrow( + origenEC.x + anchoCubierta / 2, + origenEC.y - (altoLibro / 3), + origenEC.x + anchoLibro + lomoLibro / 2, + origenEC.y - (altoLibro / 3), + 10); + cotaSolapa1.linewidth = 2; + + // Textos Solapas + let stylesSolapa = { size: 18, family: 'Public Sans' }; + previewEC.makeText("Solapa 1", origenEC.x + anchoLibro + (lomoLibro + anchoSolapa) / 2, origenEC.y, stylesSolapa); + previewEC.makeText("Solapa 2", origenEC.x - anchoLibro - (lomoLibro + anchoSolapa) / 2, origenEC.y, stylesSolapa); + // Textos Cotas Solapas + previewEC.makeText(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); + } + + } + + var libro = previewEC.makeRectangle( + origenEC.x, + origenEC.y, + ((2 * anchoLibro) + lomoLibro), + altoLibro); + libro.stroke = 'black'; + libro.linewidth = 1; + + var lomo = previewEC.makeRectangle( + origenEC.x, + origenEC.y, + lomoLibro, + altoLibro); + lomo.stroke = 'black'; + lomo.fill = '#F4F8F2'; + lomo.linewidth = 1; + + // Cotas y textos + if (this.size != "thumbnail") { + // Cotas: + var cotaAnchoCubierta = previewEC.makeDobleArrow( + origenEC.x - (anchoSangrado / 2), + origenEC.y + (altoLibro / 2) + 35, + origenEC.x + (anchoSangrado / 2), + origenEC.y + (altoLibro / 2) + 35, + 10); + cotaAnchoCubierta.linewidth = 2; + var cotaAltoCubierta = previewEC.makeDobleArrow( + origenEC.x + (anchoCubierta / 2) + 35, + origenEC.y + (altoSangrado / 2), + origenEC.x + (anchoCubierta / 2) + 35, + origenEC.y - (altoSangrado / 2), + 10); + cotaAltoCubierta.linewidth = 2; + var cotaAltoLibro = previewEC.makeDobleArrow( + origenEC.x + (lomoLibro / 2) + 35, + origenEC.y + (altoLibro / 2), + origenEC.x + (lomoLibro / 2) + 35, + origenEC.y - (altoLibro / 2), + 10); + cotaAltoLibro.linewidth = 2; + var cotaContraportada = previewEC.makeDobleArrow( + origenEC.x - (lomoLibro / 2 + anchoLibro), + origenEC.y - (altoLibro / 3), + origenEC.x - (lomoLibro / 2), + origenEC.y - (altoLibro / 3), + 10); + cotaContraportada.linewidth = 2; + var cotaPortada = previewEC.makeDobleArrow( + origenEC.x + (lomoLibro / 2), + origenEC.y - (altoLibro / 3), + origenEC.x + (lomoLibro / 2 + anchoLibro), + origenEC.y - (altoLibro / 3), + 10); + cotaPortada.linewidth = 2; + + // Textos: + // Titulos generales + let stylesEC = { size: 22, weight: 'bold', family: 'Public Sans' }; + previewEC.makeText("Portada", origenEC.x + (lomoLibro + anchoLibro) / 2, origenEC.y, stylesEC); + previewEC.makeText("Contraportada", origenEC.x - (lomoLibro + anchoLibro) / 2, origenEC.y, stylesEC); + // Sangrados + let styleSangrado = { size: 10, family: 'Public Sans', style: 'italic', fill: 'red' }; + previewEC.makeText(sangradoTexto, origenEC.x, origenEC.y + (altoLibro / 2 + 20), styleSangrado); + previewEC.makeText(sangradoTexto, origenEC.x, origenEC.y - (altoLibro / 2 + 20), styleSangrado); + previewEC.makeText(sangradoTexto, origenEC.x + (lomoLibro / 2 + anchoLibro + anchoSolapa + 20), origenEC.y, styleSangrado).rotation = -Math.PI / 2; + previewEC.makeText(sangradoTexto, origenEC.x - (lomoLibro / 2 + anchoLibro + anchoSolapa + 20), origenEC.y, styleSangrado).rotation = -Math.PI / 2; + // Cotas + previewEC.makeText((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.toFixed(1) + (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)).toFixed(1) + " mm", + origenEC.x, + origenEC.y + (altoLibro / 2) + 50, + styleCotas); + } + + previewEC.update(); + } } export default previewFormas; @@ -1016,25 +1190,5 @@ function portadaGrapado(isThumbnail = false) { } -function getObjetoToPreview() { - if ($('#cosidoDiv').length) { - pvObj = { - lomoLibro: $('#lomo_cubierta').val() === '' ? parseFloat('0.0') : parseFloat($('#lomo_cubierta').val()), - anchoSolapa: $('#solapasCubierta').is(':checked') ? parseFloat($('#anchoSolapasCubierta').val()) : parseFloat(0), - altoLibro: getDimensionLibro().alto, - anchoLibro: getDimensionLibro().ancho - }; - } else { - let tamanio = $('#resumenTamanio').text().split(' ')[1].split('x'); - let solapas = parseInt($('#resumenSolapasCubierta').length ? $('#resumenSolapasCubierta').text().split(' ')[1].replace("mm", '') : 0); - pvObj = { - lomoLibro: $('#lomo_cubierta').val() === '' ? parseFloat('0.0') : parseFloat($('#lomo_cubierta').val()), - anchoSolapa: solapas, - altoLibro: parseInt(tamanio[1]), - anchoLibro: parseInt(tamanio[0]) - }; - } - //console.log($('#lomo_cubierta').val()); -} */ \ No newline at end of file diff --git a/xdebug.log b/xdebug.log index fa69e2e2..24d2b2cb 100644 --- a/xdebug.log +++ b/xdebug.log @@ -116634,3 +116634,9169 @@ Stack trace: [39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). [39] Log closed at 2024-10-22 09:20:55.745439 +[41] Log opened at 2024-10-22 12:17:48.707329 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 12:17:49.667353 + +[22] Log opened at 2024-10-22 12:17:49.681124 +[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 12:17:50.689663 + +[22] Log opened at 2024-10-22 12:17:50.766089 +[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 12:17:51.407479 + +[23] Log opened at 2024-10-22 12:17:51.516283 +[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 12:17:52.415879 + +[23] Log opened at 2024-10-22 12:17:55.602579 +[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 12:17:57.012216 + +[23] Log opened at 2024-10-22 12:17:57.021816 +[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 12:17:58.180530 + +[23] Log opened at 2024-10-22 12:17:58.244064 +[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 12:17:58.884042 + +[23] Log opened at 2024-10-22 12:17:58.975678 +[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. +[43] Log opened at 2024-10-22 12:17:58.992818 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] Log opened at 2024-10-22 12:17:59.030749 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-10-22 12:17:59.950226 + +[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. +[39] [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 12:18:00.572867 + +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-10-22 12:18:00.949827 + +[23] Log opened at 2024-10-22 12:18:01.478426 +[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 12:18:02.504555 + +[23] Log opened at 2024-10-22 12:18:02.514563 +[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 12:18:03.641337 + +[23] Log opened at 2024-10-22 12:18:03.841011 +[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. +[43] Log opened at 2024-10-22 12:18:03.841368 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] Log opened at 2024-10-22 12:18:03.889000 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-10-22 12:18:04.774731 + +[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. +[39] [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 12:18:05.387932 + +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-10-22 12:18:05.765041 + +[23] Log opened at 2024-10-22 12:18:07.029533 +[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 12:18:08.162010 + +[23] Log opened at 2024-10-22 12:18:08.222123 +[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 12:18:08.864824 + +[23] Log opened at 2024-10-22 12:18:08.952943 +[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. +[39] Log opened at 2024-10-22 12:18:08.959400 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] Log opened at 2024-10-22 12:18:09.024860 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-10-22 12:18:09.893986 + +[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 12:18:10.532907 + +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-10-22 12:18:11.018543 + +[23] Log opened at 2024-10-22 12:18:13.774499 +[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 12:18:14.946702 + +[46] Log opened at 2024-10-22 12:31:34.144902 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-22 12:31:35.371607 + +[46] Log opened at 2024-10-22 12:31:35.463282 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-22 12:31:36.106522 + +[48] Log opened at 2024-10-22 12:31:36.221619 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-10-22 12:31:36.237712 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] Log opened at 2024-10-22 12:31:36.385861 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 12:31:37.213961 + +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] Log closed at 2024-10-22 12:31:37.993994 + +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 12:31:39.080287 + +[47] Log opened at 2024-10-22 12:31:43.934210 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 12:31:45.142672 + +[47] Log opened at 2024-10-22 12:31:47.407796 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 12:31:48.598232 + +[47] Log opened at 2024-10-22 12:31:48.665986 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 12:31:49.311815 + +[47] Log opened at 2024-10-22 12:31:49.408754 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] Log opened at 2024-10-22 12:31:49.420798 +[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. +[33] Log opened at 2024-10-22 12:31:49.475363 +[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. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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] 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 12:31:50.394347 + +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 12:31:51.023053 + +[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 12:31:51.414460 + +[47] Log opened at 2024-10-22 12:31:54.695236 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 12:31:55.850462 + +[47] Log opened at 2024-10-22 12:31:55.908876 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 12:31:56.550929 + +[47] Log opened at 2024-10-22 12:31:56.646227 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-10-22 12:31:56.651581 +[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. +[50] Log opened at 2024-10-22 12:31:56.719051 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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 12:31:57.598413 + +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 12:31:58.213437 + +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-10-22 12:31:58.703791 + +[47] Log opened at 2024-10-22 12:32:00.871189 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 12:32:02.059958 + +[47] Log opened at 2024-10-22 12:32:02.120754 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 12:32:02.766860 + +[47] Log opened at 2024-10-22 12:32:02.860411 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] Log opened at 2024-10-22 12:32:02.879058 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] Log opened at 2024-10-22 12:32:02.916365 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-10-22 12:32:03.819685 + +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 12:32:04.493316 + +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-22 12:32:04.871333 + +[47] Log opened at 2024-10-22 12:32:06.895601 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 12:32:08.061387 + +[47] Log opened at 2024-10-22 12:32:08.137370 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 12:32:08.783031 + +[47] Log opened at 2024-10-22 12:32:08.879149 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] Log opened at 2024-10-22 12:32:08.883716 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] Log opened at 2024-10-22 12:32:08.953572 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-22 12:32:09.865294 + +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 12:32:10.533247 + +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-10-22 12:32:10.953405 + +[49] Log opened at 2024-10-22 14:17:37.817118 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-10-22 14:17:38.843746 + +[49] Log opened at 2024-10-22 14:17:38.857478 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-10-22 14:17:39.805350 + +[49] Log opened at 2024-10-22 14:17:40.059454 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-10-22 14:17:40.720858 + +[49] Log opened at 2024-10-22 14:17:40.985474 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-10-22 14:17:41.889592 + +[49] Log opened at 2024-10-22 14:17:42.636239 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-10-22 14:17:44.112957 + +[49] Log opened at 2024-10-22 14:17:44.124124 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-10-22 14:17:45.971280 + +[50] Log opened at 2024-10-22 14:17:46.114200 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-10-22 14:17:46.794526 + +[47] Log opened at 2024-10-22 14:17:47.053810 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] Log opened at 2024-10-22 14:17:47.243339 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log opened at 2024-10-22 14:17:47.257539 +[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. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-10-22 14:17:48.244038 + +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 14:17:48.889675 + +[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 14:17:49.222182 + +[50] Log opened at 2024-10-22 14:17:49.268448 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-10-22 14:17:50.813244 + +[50] Log opened at 2024-10-22 14:17:50.896573 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-10-22 14:17:56.816939 + +[22] Log opened at 2024-10-22 14:18:03.645987 +[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 14:18:08.583783 + +[46] Log opened at 2024-10-22 14:18:17.593290 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-22 14:18:18.797528 + +[48] Log opened at 2024-10-22 14:18:18.866194 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] Log closed at 2024-10-22 14:18:19.528439 + +[48] Log opened at 2024-10-22 14:18:19.659813 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] Log opened at 2024-10-22 14:18:19.686383 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] Log opened at 2024-10-22 14:18:19.794101 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-22 14:18:20.637496 + +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] Log closed at 2024-10-22 14:18:21.341497 + +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-10-22 14:18:21.784280 + +[49] Log opened at 2024-10-22 14:18:25.711406 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-10-22 14:18:26.849081 + +[49] Log opened at 2024-10-22 14:18:30.769243 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-10-22 14:18:31.962859 + +[49] Log opened at 2024-10-22 14:18:32.022683 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-10-22 14:18:32.665319 + +[49] Log opened at 2024-10-22 14:18:32.752476 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] Log opened at 2024-10-22 14:18:32.763236 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] Log opened at 2024-10-22 14:18:32.812929 +[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. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-10-22 14:18:33.740800 + +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-10-22 14:18:34.346705 + +[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 14:18:34.708857 + +[22] Log opened at 2024-10-22 14:19:01.722615 +[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 14:19:02.929396 + +[41] Log opened at 2024-10-22 14:19:02.996392 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 14:19:03.658780 + +[41] Log opened at 2024-10-22 14:19:03.761803 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-10-22 14:19:03.777078 +[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. +[46] Log opened at 2024-10-22 14:19:03.886322 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] 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 14:19:04.730100 + +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 14:19:05.347513 + +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-22 14:19:05.754050 + +[22] Log opened at 2024-10-22 14:19:09.508039 +[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 14:19:11.286871 + +[22] Log opened at 2024-10-22 14:19:11.358166 +[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 14:19:11.997841 + +[48] Log opened at 2024-10-22 14:19:12.108287 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] Log opened at 2024-10-22 14:19:12.112359 +[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. +[47] Log opened at 2024-10-22 14:19:12.196024 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] Log opened at 2024-10-22 14:19:12.209713 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-10-22 14:19:12.215762 +[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. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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 14:19:13.099674 + +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] Log closed at 2024-10-22 14:19:13.719719 + +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 14:19:14.130901 + +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-10-22 14:19:14.569521 + +[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 14:19:14.987444 + +[49] Log opened at 2024-10-22 14:19:30.301152 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-10-22 14:19:31.428723 + +[49] Log opened at 2024-10-22 14:19:34.457570 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-10-22 14:19:35.594779 + +[33] Log opened at 2024-10-22 14:21:30.259912 +[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 14:21:35.489286 + +[50] Log opened at 2024-10-22 14:22:33.432076 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-10-22 14:22:34.531625 + +[50] Log opened at 2024-10-22 14:22:38.126349 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-10-22 14:22:39.253929 + +[50] Log opened at 2024-10-22 14:22:42.580546 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-10-22 14:22:43.692406 + +[41] Log opened at 2024-10-22 14:22:59.631164 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 14:23:05.769629 + +[23] Log opened at 2024-10-22 14:24:21.729895 +[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 14:24:23.395043 + +[23] Log opened at 2024-10-22 14:24:23.537923 +[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 14:24:24.181136 + +[48] Log opened at 2024-10-22 14:24:24.521313 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] Log opened at 2024-10-22 14:24:24.525625 +[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. +[47] Log opened at 2024-10-22 14:24:24.550741 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] 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). +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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 14:24:25.476271 + +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] Log closed at 2024-10-22 14:24:26.063769 + +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 14:24:26.396076 + +[48] Log opened at 2024-10-22 14:24:26.438212 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] Log closed at 2024-10-22 14:24:27.911275 + +[22] Log opened at 2024-10-22 14:24:48.687778 +[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 14:24:50.389368 + +[22] Log opened at 2024-10-22 14:24:50.589639 +[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 14:24:51.238313 + +[49] Log opened at 2024-10-22 14:24:51.549064 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] Log opened at 2024-10-22 14:24:51.653634 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] Log opened at 2024-10-22 14:24:51.653579 +[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. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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 14:24:52.698313 + +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-10-22 14:24:53.265344 + +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-10-22 14:24:53.608095 + +[33] Log opened at 2024-10-22 14:24:53.654487 +[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 14:24:55.112530 + +[47] Log opened at 2024-10-22 14:26:25.568460 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 14:26:27.393369 + +[47] Log opened at 2024-10-22 14:26:27.659073 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 14:26:28.317694 + +[48] Log opened at 2024-10-22 14:26:28.815557 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log opened at 2024-10-22 14:26:29.017362 +[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. +[43] Log opened at 2024-10-22 14:26:29.028046 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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 14:26:29.992082 + +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] Log closed at 2024-10-22 14:26:30.564169 + +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-10-22 14:26:30.892395 + +[46] Log opened at 2024-10-22 14:26:30.931392 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-22 14:26:32.446418 + +[48] Log opened at 2024-10-22 14:26:32.481651 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] Log opened at 2024-10-22 14:26:32.548558 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] Log closed at 2024-10-22 14:26:33.574177 + +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-22 14:26:37.545219 + +[50] Log opened at 2024-10-22 14:27:12.049844 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-10-22 14:27:16.421734 + +[50] Log opened at 2024-10-22 14:27:19.928476 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-10-22 14:27:24.737407 + +[23] Log opened at 2024-10-22 14:28:06.561409 +[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 14:28:08.315831 + +[23] Log opened at 2024-10-22 14:28:08.609093 +[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 14:28:09.286470 + +[43] Log opened at 2024-10-22 14:28:09.671427 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] Log opened at 2024-10-22 14:28:09.800668 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] Log opened at 2024-10-22 14:28:09.804089 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 14:28:10.894233 + +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-10-22 14:28:11.667363 + +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] Log closed at 2024-10-22 14:28:12.055275 + +[22] Log opened at 2024-10-22 14:28:12.103031 +[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 14:28:13.676581 + +[43] Log opened at 2024-10-22 14:28:13.708365 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-10-22 14:28:13.765236 +[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. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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. +[43] [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 14:28:18.594971 + +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-10-22 14:28:18.982597 + +[46] Log opened at 2024-10-22 14:28:31.785462 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-22 14:28:36.005908 + +[50] Log opened at 2024-10-22 14:28:52.246959 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-10-22 14:28:56.684087 + +[33] Log opened at 2024-10-22 14:29:06.660034 +[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 14:29:07.899387 + +[33] Log opened at 2024-10-22 14:29:07.961679 +[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 14:29:08.605101 + +[52] Log opened at 2024-10-22 14:29:08.695428 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] Log opened at 2024-10-22 14:29:08.705125 +[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. +[41] Log opened at 2024-10-22 14:29:08.775037 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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 14:29:09.648057 + +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-22 14:29:10.264494 + +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 14:29:10.676870 + +[23] Log opened at 2024-10-22 14:29:13.191911 +[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 14:29:17.616318 + +[46] Log opened at 2024-10-22 14:35:52.909525 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-22 14:35:54.614082 + +[46] Log opened at 2024-10-22 14:35:54.860620 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-22 14:35:55.525865 + +[50] Log opened at 2024-10-22 14:35:55.905715 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] Log opened at 2024-10-22 14:35:56.030891 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] Log opened at 2024-10-22 14:35:56.035756 +[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. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-22 14:35:57.060539 + +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-10-22 14:35:57.638517 + +[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 14:35:57.982771 + +[47] Log opened at 2024-10-22 14:35:58.029909 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 14:35:59.714762 + +[50] Log opened at 2024-10-22 14:35:59.750233 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] Log opened at 2024-10-22 14:35:59.827158 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-10-22 14:36:00.861070 + +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 14:36:04.657029 + +[22] Log opened at 2024-10-22 14:36:33.044729 +[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 140 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[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] [Step Debug] -> + +[22] [Step Debug] <- stack_get -i 14 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 15 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 16 -n "$return_data['errors']->status" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 17 -n "$uso" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 18 -n "$datos_papel" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_names -i 19 -d 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_get -i 20 -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- step_over -i 21 +[22] [Step Debug] -> + +[22] [Step Debug] <- stack_get -i 22 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 23 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 24 -n "$return_data['errors']->status" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 25 -n "$uso" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 26 -n "$datos_papel" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_names -i 27 -d 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_get -i 28 -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 29 -n "$presupuestoEntity->cliente_id" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 30 -n "$presupuestoEntity" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 31 -n "$presupuestoEntity" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 32 -n "$requestedId" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 33 -n "$presupuestoEntity" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 34 -n "$this->redirect2listView" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 35 -n "$user" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 36 -n "$presupuestoEntity" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 37 -n "$user" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 38 -n "$this" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 39 -n "$requestedId" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 40 -n "$model_user->find" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 41 -n "$user->cliente_id" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 42 -n "$presupuestoEntity" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 43 -n "$user->cliente_id" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 44 -n "$user->cliente_id" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 45 -n "$user->cliente_id" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 46 -n "$user->cliente_id" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 47 -n "$user->cliente_id" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 48 -n "$message" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 49 -n "$model_user" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 50 -n "$model_user" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_remove -i 51 -d 220041 +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 52 +[22] [Step Debug] -> + +[22] Log closed at 2024-10-22 14:37:44.977244 + +[22] Log opened at 2024-10-22 14:37:45.166068 +[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 440 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 12 +[22] [Step Debug] -> + +[22] Log closed at 2024-10-22 14:37:45.339316 + +[43] Log opened at 2024-10-22 14:37:45.792655 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[43] [Step Debug] <- run -i 12 +[22] Log opened at 2024-10-22 14:37:45.907321 +[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. +[53] Log opened at 2024-10-22 14:37:45.907734 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[53] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[53] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[53] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[53] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[53] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[53] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[22] [Step Debug] -> + +[53] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[22] [Step Debug] -> + +[53] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[53] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[22] [Step Debug] -> + +[53] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[22] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[53] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[53] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[53] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[53] [Step Debug] -> + +[53] [Step Debug] <- run -i 12 +[22] [Step Debug] <- run -i 12 +[53] [Step Debug] -> + +[53] Log closed at 2024-10-22 14:37:46.445787 + +[43] [Step Debug] -> + +[43] Log closed at 2024-10-22 14:37:46.912231 + +[22] [Step Debug] -> + +[22] Log closed at 2024-10-22 14:37:47.072133 + +[53] Log opened at 2024-10-22 14:37:47.118240 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[53] [Step Debug] -> + +[53] [Step Debug] <- run -i 12 +[53] [Step Debug] -> + +[53] [Step Debug] -> + +[53] [Step Debug] -> + +[53] [Step Debug] -> + +[53] Log closed at 2024-10-22 14:37:48.187886 + +[53] Log opened at 2024-10-22 14:37:48.219718 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[53] [Step Debug] -> + +[53] [Step Debug] <- run -i 12 +[43] Log opened at 2024-10-22 14:37:48.297838 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[43] [Step Debug] <- run -i 12 +[53] [Step Debug] -> + +[53] Log closed at 2024-10-22 14:37:48.827992 + +[43] [Step Debug] -> + +[43] [Step Debug] -> + +[43] [Step Debug] -> + +[43] [Step Debug] -> + +[43] [Step Debug] <- stack_get -i 13 +[43] [Step Debug] -> + +[43] [Step Debug] <- property_get -i 14 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[43] [Step Debug] -> + +[43] [Step Debug] <- property_get -i 15 -n "$return_data['errors']->status" -d 0 -c 0 +[43] [Step Debug] -> + +[43] [Step Debug] <- property_get -i 16 -n "$uso" -d 0 -c 0 +[43] [Step Debug] -> + +[43] [Step Debug] <- property_get -i 17 -n "$datos_papel" -d 0 -c 0 +[43] [Step Debug] -> + +[43] [Step Debug] <- context_names -i 18 -d 0 +[43] [Step Debug] -> + +[43] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_remove -i 20 -d 430008 +[43] [Step Debug] -> + +[43] [Step Debug] <- stop -i 21 +[43] [Step Debug] -> + +[43] [Step Debug] -> + +[43] Log closed at 2024-10-22 14:37:58.124057 + +[46] Log opened at 2024-10-22 14:38:32.428356 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-22 14:38:34.154119 + +[46] Log opened at 2024-10-22 14:38:34.329838 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-22 14:38:34.972107 + +[41] Log opened at 2024-10-22 14:38:35.238724 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log opened at 2024-10-22 14:38:35.461607 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] Log opened at 2024-10-22 14:38:35.468806 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-22 14:38:36.408918 + +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 14:38:37.035300 + +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-22 14:38:37.361464 + +[52] Log opened at 2024-10-22 14:38:37.412243 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-22 14:38:38.901453 + +[52] Log opened at 2024-10-22 14:38:38.929198 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-10-22 14:38:38.988138 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-22 14:38:40.037118 + +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 14:38:43.675751 + +[33] Log opened at 2024-10-22 14:39:12.176452 +[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 14:39:13.971338 + +[33] Log opened at 2024-10-22 14:39:14.140557 +[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 14:39:14.781374 + +[50] Log opened at 2024-10-22 14:39:15.026780 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log opened at 2024-10-22 14:39:15.237014 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] Log opened at 2024-10-22 14:39:15.238050 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 14:39:16.192038 + +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-10-22 14:39:16.788657 + +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] Log closed at 2024-10-22 14:39:17.121270 + +[47] Log opened at 2024-10-22 14:39:17.165929 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 14:39:18.699320 + +[47] Log opened at 2024-10-22 14:39:18.729590 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] Log opened at 2024-10-22 14:39:18.785602 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 14:39:19.839307 + +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-10-22 14:39:23.668303 + +[43] Log opened at 2024-10-22 14:41:01.650333 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-10-22 14:41:03.332001 + +[43] Log opened at 2024-10-22 14:41:03.469802 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-10-22 14:41:04.112435 + +[46] Log opened at 2024-10-22 14:41:04.375518 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] Log opened at 2024-10-22 14:41:04.525762 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-10-22 14:41:04.534881 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-22 14:41:05.478075 + +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-22 14:41:06.055335 + +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 14:41:06.398656 + +[52] Log opened at 2024-10-22 14:41:06.448053 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-22 14:41:07.919658 + +[52] Log opened at 2024-10-22 14:41:07.950068 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] Log opened at 2024-10-22 14:41:08.009235 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-22 14:41:09.045344 + +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-22 14:41:12.853854 + +[53] Log opened at 2024-10-22 14:43:24.346657 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[53] Log closed at 2024-10-22 14:43:26.066742 + +[53] Log opened at 2024-10-22 14:43:26.247795 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[53] Log closed at 2024-10-22 14:43:26.901573 + +[51] Log opened at 2024-10-22 14:43:27.284614 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] Log opened at 2024-10-22 14:43:27.312125 +[47] Log opened at 2024-10-22 14:43:27.312136 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 14:43:28.314489 + +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] Log closed at 2024-10-22 14:43:28.931458 + +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[53] Log closed at 2024-10-22 14:43:29.263984 + +[47] Log opened at 2024-10-22 14:43:29.311333 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 14:43:30.834047 + +[47] Log opened at 2024-10-22 14:43:30.863535 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] Log opened at 2024-10-22 14:43:30.920463 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 14:43:31.960525 + +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] Log closed at 2024-10-22 14:43:36.383673 + +[43] Log opened at 2024-10-22 14:44:00.898321 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-10-22 14:44:02.627171 + +[43] Log opened at 2024-10-22 14:44:02.767000 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-10-22 14:44:03.415074 + +[41] Log opened at 2024-10-22 14:44:03.723298 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] Log opened at 2024-10-22 14:44:03.822472 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] Log opened at 2024-10-22 14:44:03.828250 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-22 14:44:04.818593 + +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 14:44:05.400109 + +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-22 14:44:05.734509 + +[52] Log opened at 2024-10-22 14:44:05.775629 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-22 14:44:07.207339 + +[33] Log opened at 2024-10-22 14:45:18.064489 +[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. +[53] Log opened at 2024-10-22 14:45:18.141821 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[53] Log closed at 2024-10-22 14:45:22.845796 + +[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 14:45:23.255736 + +[41] Log opened at 2024-10-22 14:50:18.150979 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 14:50:19.327340 + +[41] Log opened at 2024-10-22 14:50:22.373077 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 14:50:24.076861 + +[41] Log opened at 2024-10-22 14:50:24.096421 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 14:50:33.304302 + +[46] Log opened at 2024-10-22 14:50:41.082060 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-22 14:50:45.768617 + +[46] Log opened at 2024-10-22 14:50:50.113266 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-22 14:50:55.184915 + +[53] Log opened at 2024-10-22 15:00:38.536358 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[53] Log closed at 2024-10-22 15:00:40.388450 + +[53] Log opened at 2024-10-22 15:00:40.568609 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[53] Log closed at 2024-10-22 15:00:41.209291 + +[50] Log opened at 2024-10-22 15:00:41.474461 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] Log opened at 2024-10-22 15:00:41.637604 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-10-22 15:00:41.641708 +[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. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log opened at 2024-10-22 15:00:41.727827 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] Log closed at 2024-10-22 15:00:42.597839 + +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-10-22 15:00:43.145529 + +[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 15:00:43.486466 + +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 15:00:44.473735 + +[47] Log opened at 2024-10-22 15:00:44.620723 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 15:00:45.284705 + +[46] Log opened at 2024-10-22 15:00:45.656584 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] Log opened at 2024-10-22 15:00:45.715042 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] Log opened at 2024-10-22 15:00:45.718697 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-10-22 15:00:46.675398 + +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-22 15:00:46.989448 + +[41] Log opened at 2024-10-22 15:00:47.030729 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-22 15:00:47.627636 + +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 15:00:48.461910 + +[46] Log opened at 2024-10-22 15:00:48.491540 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-10-22 15:00:48.550672 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-22 15:00:49.586753 + +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 15:00:53.178504 + +[22] Log opened at 2024-10-22 15:02:06.780277 +[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 15:02:08.444496 + +[22] Log opened at 2024-10-22 15:02:08.664443 +[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 15:02:09.321720 + +[47] Log opened at 2024-10-22 15:02:09.691908 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] Log opened at 2024-10-22 15:02:09.842497 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] Log opened at 2024-10-22 15:02:09.848180 +[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. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-10-22 15:02:10.922427 + +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 15:02:11.488366 + +[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 15:02:11.878679 + +[52] Log opened at 2024-10-22 15:02:11.926013 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-22 15:02:13.533145 + +[47] Log opened at 2024-10-22 15:02:13.565734 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] Log opened at 2024-10-22 15:02:13.629280 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 15:02:14.637377 + +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-22 15:02:18.286793 + +[51] Log opened at 2024-10-22 15:03:13.825998 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] Log closed at 2024-10-22 15:03:15.536256 + +[51] Log opened at 2024-10-22 15:03:15.742909 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] Log closed at 2024-10-22 15:03:16.406952 + +[55] Log opened at 2024-10-22 15:03:16.796143 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[54] Log opened at 2024-10-22 15:03:16.909775 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] Log opened at 2024-10-22 15:03:16.910784 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-10-22 15:03:17.937873 + +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-10-22 15:03:18.521833 + +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-10-22 15:03:18.864338 + +[22] Log opened at 2024-10-22 15:03:18.906708 +[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 15:03:20.403492 + +[55] Log opened at 2024-10-22 15:03:20.432258 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-10-22 15:03:20.491787 +[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. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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. +[55] [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 15:03:24.871829 + +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-10-22 15:03:25.265197 + +[52] Log opened at 2024-10-22 15:06:08.469014 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-22 15:06:10.135935 + +[52] Log opened at 2024-10-22 15:06:10.347427 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-22 15:06:11.004596 + +[54] Log opened at 2024-10-22 15:06:11.442038 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] Log opened at 2024-10-22 15:06:11.457803 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[56] Log opened at 2024-10-22 15:06:11.458331 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[56] Log closed at 2024-10-22 15:06:12.444908 + +[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-10-22 15:06:13.077556 + +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] Log closed at 2024-10-22 15:06:13.425081 + +[41] Log opened at 2024-10-22 15:06:13.464418 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 15:06:14.898295 + +[54] Log opened at 2024-10-22 15:06:14.935543 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-10-22 15:06:14.995511 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-10-22 15:06:16.023457 + +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 15:06:19.794427 + +[55] Log opened at 2024-10-22 15:07:00.222058 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-10-22 15:07:01.920228 + +[55] Log opened at 2024-10-22 15:07:02.135406 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-10-22 15:07:02.791279 + +[50] Log opened at 2024-10-22 15:07:03.225902 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[56] Log opened at 2024-10-22 15:07:03.250569 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[57] Log opened at 2024-10-22 15:07:03.250733 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[57] Log closed at 2024-10-22 15:07:04.315932 + +[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[56] Log closed at 2024-10-22 15:07:04.626437 + +[47] Log opened at 2024-10-22 15:07:04.667090 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-10-22 15:07:05.245581 + +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 15:07:06.102188 + +[50] Log opened at 2024-10-22 15:07:06.132779 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] Log opened at 2024-10-22 15:07:06.196846 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-10-22 15:07:07.242712 + +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 15:07:11.054517 + +[41] Log opened at 2024-10-22 15:09:41.108421 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 15:09:45.963432 + +[55] Log opened at 2024-10-22 15:10:41.093238 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-10-22 15:10:42.782780 + +[55] Log opened at 2024-10-22 15:10:43.006213 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-10-22 15:10:43.663509 + +[52] Log opened at 2024-10-22 15:10:44.035684 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] Log opened at 2024-10-22 15:10:44.145308 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] Log opened at 2024-10-22 15:10:44.164159 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-10-22 15:10:45.112933 + +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-22 15:10:45.700971 + +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 15:10:46.037857 + +[56] Log opened at 2024-10-22 15:10:46.081484 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[56] Log closed at 2024-10-22 15:10:47.548142 + +[52] Log opened at 2024-10-22 15:10:47.575929 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[56] Log opened at 2024-10-22 15:10:47.638537 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-22 15:10:48.663240 + +[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[56] Log closed at 2024-10-22 15:10:52.354244 + +[41] Log opened at 2024-10-22 15:11:07.926378 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 15:11:12.301209 + +[22] Log opened at 2024-10-22 15:13:36.192290 +[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 15:13:37.924470 + +[22] Log opened at 2024-10-22 15:13:38.095111 +[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 15:13:38.734187 + +[59] Log opened at 2024-10-22 15:13:39.007606 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] Log opened at 2024-10-22 15:13:39.131170 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] Log opened at 2024-10-22 15:13:39.138830 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-10-22 15:13:40.101900 + +[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-10-22 15:13:40.769919 + +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-10-22 15:13:41.104269 + +[58] Log opened at 2024-10-22 15:13:41.142560 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-10-22 15:13:42.570861 + +[58] Log opened at 2024-10-22 15:13:42.604486 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] Log opened at 2024-10-22 15:13:42.663036 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-10-22 15:13:43.763273 + +[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-10-22 15:13:47.779693 + +[57] Log opened at 2024-10-22 15:14:03.147854 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[57] Log closed at 2024-10-22 15:14:07.919390 + +[57] Log opened at 2024-10-22 15:14:11.260086 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[57] Log closed at 2024-10-22 15:14:15.616525 + +[50] Log opened at 2024-10-22 15:14:33.846617 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-10-22 15:14:39.056250 + +[52] Log opened at 2024-10-22 15:15:01.751676 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-22 15:15:03.600998 + +[52] Log opened at 2024-10-22 15:15:03.798887 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-22 15:15:04.456820 + +[58] Log opened at 2024-10-22 15:15:04.828670 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-10-22 15:15:04.924753 +[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. +[55] Log opened at 2024-10-22 15:15:04.946669 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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 15:15:05.921986 + +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-10-22 15:15:06.512499 + +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-10-22 15:15:06.842679 + +[56] Log opened at 2024-10-22 15:15:06.889860 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[56] Log closed at 2024-10-22 15:15:08.263172 + +[58] Log opened at 2024-10-22 15:15:08.352152 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-10-22 15:15:12.685618 + +[57] Log opened at 2024-10-22 15:15:18.868188 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[57] Log closed at 2024-10-22 15:15:20.033543 + +[57] Log opened at 2024-10-22 15:15:22.412797 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[57] Log closed at 2024-10-22 15:15:23.465769 + +[47] Log opened at 2024-10-22 15:15:40.743215 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 15:15:42.418705 + +[47] Log opened at 2024-10-22 15:15:42.658350 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 15:15:43.322442 + +[22] Log opened at 2024-10-22 15:15:43.787902 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-10-22 15:15:43.827138 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] Log opened at 2024-10-22 15:15:43.831596 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 15:15:44.796804 + +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-10-22 15:15:45.116955 + +[60] Log opened at 2024-10-22 15:15:45.158538 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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 15:15:45.713313 + +[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-10-22 15:15:46.666916 + +[22] Log opened at 2024-10-22 15:15:46.750906 +[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 15:15:51.355670 + +[58] Log opened at 2024-10-22 15:15:57.454886 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-10-22 15:15:58.542277 + +[58] Log opened at 2024-10-22 15:15:59.092613 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] Log opened at 2024-10-22 15:15:59.142004 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log opened at 2024-10-22 15:15:59.305523 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-10-22 15:16:00.273211 + +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[57] Log closed at 2024-10-22 15:16:00.785853 + +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-10-22 15:16:01.300600 + +[61] Log opened at 2024-10-22 15:16:03.455551 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[61] Log closed at 2024-10-22 15:16:04.636368 + +[52] Log opened at 2024-10-22 15:16:21.560419 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-22 15:16:23.200439 + +[52] Log opened at 2024-10-22 15:16:23.390631 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-22 15:16:24.051126 + +[22] Log opened at 2024-10-22 15:16:24.404418 +[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. +[60] Log opened at 2024-10-22 15:16:24.486079 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] Log opened at 2024-10-22 15:16:24.489077 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-10-22 15:16:25.464184 + +[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. +[58] [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 15:16:26.059283 + +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-10-22 15:16:26.393674 + +[55] Log opened at 2024-10-22 15:16:26.438284 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-10-22 15:16:27.825168 + +[22] Log opened at 2024-10-22 15:16:27.912399 +[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 15:16:32.223130 + +[50] Log opened at 2024-10-22 15:16:37.899101 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-10-22 15:16:38.965106 + +[50] Log opened at 2024-10-22 15:16:42.133147 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-10-22 15:16:43.231929 + +[62] Log opened at 2024-10-22 15:16:59.068056 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-10-22 15:17:00.773945 + +[62] Log opened at 2024-10-22 15:17:00.961010 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-10-22 15:17:01.635673 + +[58] Log opened at 2024-10-22 15:17:02.048691 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-10-22 15:17:02.136602 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] Log opened at 2024-10-22 15:17:02.141940 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 15:17:03.119606 + +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-10-22 15:17:03.713211 + +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-22 15:17:04.043135 + +[55] Log opened at 2024-10-22 15:17:04.093027 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-10-22 15:17:05.554056 + +[58] Log opened at 2024-10-22 15:17:05.655999 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-10-22 15:17:10.049684 + +[61] Log opened at 2024-10-22 15:17:31.486034 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[61] Log closed at 2024-10-22 15:17:32.595140 + +[61] Log opened at 2024-10-22 15:17:34.897948 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[61] Log closed at 2024-10-22 15:17:36.004258 + +[62] Log opened at 2024-10-22 15:28:51.755392 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-10-22 15:28:53.626945 + +[62] Log opened at 2024-10-22 15:28:53.858813 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-10-22 15:28:54.521515 + +[55] Log opened at 2024-10-22 15:28:55.034711 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] Log opened at 2024-10-22 15:28:55.178179 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] Log opened at 2024-10-22 15:28:55.181483 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-10-22 15:28:56.207824 + +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-10-22 15:28:56.848112 + +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-22 15:28:57.179732 + +[60] Log opened at 2024-10-22 15:28:57.227645 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-10-22 15:28:58.755308 + +[55] Log opened at 2024-10-22 15:28:58.858559 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-10-22 15:29:03.316854 + +[61] Log opened at 2024-10-22 15:29:10.977438 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[61] Log closed at 2024-10-22 15:29:12.104076 + +[61] Log opened at 2024-10-22 15:29:14.432392 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[61] Log closed at 2024-10-22 15:29:15.545554 + +[63] Log opened at 2024-10-22 15:30:21.906884 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-10-22 15:30:23.624455 + +[63] Log opened at 2024-10-22 15:30:23.834832 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-10-22 15:30:24.510162 + +[41] Log opened at 2024-10-22 15:30:25.044133 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] Log opened at 2024-10-22 15:30:25.066869 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[62] Log opened at 2024-10-22 15:30:25.068429 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-22 15:30:26.066465 + +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 15:30:26.628491 + +[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-10-22 15:30:26.975989 + +[58] Log opened at 2024-10-22 15:30:27.019962 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-10-22 15:30:28.462626 + +[41] Log opened at 2024-10-22 15:30:28.567792 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 15:30:32.826536 + +[60] Log opened at 2024-10-22 15:30:38.494985 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-10-22 15:30:39.645519 + +[60] Log opened at 2024-10-22 15:30:41.648561 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-10-22 15:30:42.777852 + +[61] Log opened at 2024-10-22 15:33:38.591386 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[61] Log closed at 2024-10-22 15:33:40.322415 + +[61] Log opened at 2024-10-22 15:33:40.593493 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[61] Log closed at 2024-10-22 15:33:41.256392 + +[55] Log opened at 2024-10-22 15:33:41.633857 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] Log opened at 2024-10-22 15:33:41.753711 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] Log opened at 2024-10-22 15:33:41.754366 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-22 15:33:42.750121 + +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-10-22 15:33:43.367716 + +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 15:33:43.690446 + +[60] Log opened at 2024-10-22 15:33:43.733956 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-10-22 15:33:45.213424 + +[55] Log opened at 2024-10-22 15:33:45.315228 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-10-22 15:33:51.170811 + +[64] Log opened at 2024-10-22 15:34:05.903289 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-10-22 15:34:07.305435 + +[64] Log opened at 2024-10-22 15:34:09.524849 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-10-22 15:34:10.658193 + +[74] Log opened at 2024-10-22 15:35:48.687769 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-10-22 15:35:50.645956 + +[74] Log opened at 2024-10-22 15:35:50.885964 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-10-22 15:35:51.538017 + +[76] Log opened at 2024-10-22 15:35:51.982930 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[75] Log opened at 2024-10-22 15:35:51.999384 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-10-22 15:35:52.989768 + +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-10-22 15:35:53.572589 + +[60] Log opened at 2024-10-22 15:36:45.974390 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-10-22 15:36:47.717685 + +[60] Log opened at 2024-10-22 15:36:47.921114 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-10-22 15:36:48.580353 + +[74] Log opened at 2024-10-22 15:36:48.924093 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[60] Log opened at 2024-10-22 15:36:49.046530 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] Log opened at 2024-10-22 15:36:49.046849 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] Log closed at 2024-10-22 15:36:50.024784 + +[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-10-22 15:36:50.615064 + +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-10-22 15:36:50.949608 + +[73] Log opened at 2024-10-22 15:36:50.996265 +[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' +[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[73] Log closed at 2024-10-22 15:36:52.479919 + +[74] Log opened at 2024-10-22 15:36:52.571998 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-10-22 15:36:57.140499 + +[68] Log opened at 2024-10-22 15:38:15.244159 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[68] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1801 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[68] [Step Debug] -> + +[68] [Step Debug] <- run -i 12 +[68] [Step Debug] -> + +[68] [Step Debug] -> + +[68] [Step Debug] -> + +[68] [Step Debug] -> + +[68] Log closed at 2024-10-22 15:38:16.526802 + +[68] Log opened at 2024-10-22 15:38:16.753970 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[68] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1801 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[68] [Step Debug] -> + +[77] Log opened at 2024-10-22 15:38:16.818942 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[77] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[77] [Step Debug] -> + +[68] [Step Debug] <- run -i 12 +[77] [Step Debug] <- run -i 6 +[68] [Step Debug] -> + +[68] Log closed at 2024-10-22 15:38:16.931087 + +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[77] [Step Debug] -> + +[77] Log closed at 2024-10-22 15:38:17.045946 + +[52] Log opened at 2024-10-22 15:38:17.384059 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1801 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[52] [Step Debug] <- run -i 12 +[52] [Step Debug] -> + +[52] Log closed at 2024-10-22 15:38:17.563565 + +[52] Log opened at 2024-10-22 15:38:17.591148 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1801 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[52] [Step Debug] <- run -i 12 +[63] Log opened at 2024-10-22 15:38:17.739406 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[78] Log opened at 2024-10-22 15:38:17.743731 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[78] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[78] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[78] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[63] [Step Debug] -> + +[78] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[78] [Step Debug] -> + +[78] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[78] [Step Debug] -> + +[78] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[78] [Step Debug] -> + +[78] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[78] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[63] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[63] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 +[63] [Step Debug] -> + +[78] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1801 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[63] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1801 +[63] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[78] [Step Debug] -> + +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[63] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[78] [Step Debug] -> + +[63] [Step Debug] <- run -i 12 +[78] [Step Debug] <- run -i 12 +[63] [Step Debug] -> + +[63] Log closed at 2024-10-22 15:38:18.252979 + +[52] [Step Debug] -> + +[52] Log closed at 2024-10-22 15:38:18.624682 + +[78] [Step Debug] -> + +[78] Log closed at 2024-10-22 15:38:18.765570 + +[72] Log opened at 2024-10-22 15:38:18.812785 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] -> + +[72] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[72] [Step Debug] -> + +[72] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[72] [Step Debug] -> + +[72] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[72] [Step Debug] -> + +[72] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[72] [Step Debug] -> + +[72] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[72] [Step Debug] -> + +[72] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[72] [Step Debug] -> + +[72] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 +[72] [Step Debug] -> + +[72] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1801 +[72] [Step Debug] -> + +[72] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[72] [Step Debug] -> + +[72] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[72] [Step Debug] -> + +[72] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[72] [Step Debug] -> + +[72] [Step Debug] <- run -i 12 +[72] [Step Debug] -> + +[72] [Step Debug] -> + +[72] [Step Debug] -> + +[72] [Step Debug] -> + +[72] [Step Debug] <- stack_get -i 13 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 14 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 15 -n "$return_data['errors']->status" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 16 -n "$uso" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 17 -n "$datos_papel" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_names -i 18 -d 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- step_into -i 20 +[72] [Step Debug] -> + +[72] [Step Debug] <- stack_get -i 21 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 22 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 23 -n "$return_data['errors']->status" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 24 -n "$uso" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 25 -n "$datos_papel" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_names -i 26 -d 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_get -i 27 -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 +[72] [Step Debug] -> + +[72] [Step Debug] -> + +[72] [Step Debug] <- run -i 29 +[72] [Step Debug] -> + +[72] [Step Debug] <- stack_get -i 30 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 31 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 32 -n "$return_data['errors']->status" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 33 -n "$uso" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 34 -n "$datos_papel" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_names -i 35 -d 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_get -i 36 -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 37 -n "$cliente_id" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 38 -n "$id" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- step_over -i 39 +[72] [Step Debug] -> + +[72] [Step Debug] <- stack_get -i 40 +[72] [Step Debug] -> + +[72] [Step Debug] <- stack_get -i 41 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 42 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 43 -n "$return_data['errors']->status" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 44 -n "$uso" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 45 -n "$datos_papel" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_names -i 46 -d 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_get -i 47 -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- step_over -i 48 +[72] [Step Debug] -> + +[72] [Step Debug] <- stack_get -i 49 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 50 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 51 -n "$return_data['errors']->status" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 52 -n "$uso" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 53 -n "$datos_papel" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_names -i 54 -d 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_get -i 55 -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- step_over -i 56 +[72] [Step Debug] -> + +[72] [Step Debug] <- stack_get -i 57 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 58 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 59 -n "$return_data['errors']->status" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 60 -n "$uso" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 61 -n "$datos_papel" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_names -i 62 -d 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_get -i 63 -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- step_over -i 64 +[72] [Step Debug] -> + +[72] [Step Debug] <- stack_get -i 65 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 66 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 67 -n "$return_data['errors']->status" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 68 -n "$uso" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 69 -n "$datos_papel" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_names -i 70 -d 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_get -i 71 -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- step_over -i 72 +[72] [Step Debug] -> + +[72] [Step Debug] <- stack_get -i 73 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 74 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 75 -n "$return_data['errors']->status" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 76 -n "$uso" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 77 -n "$datos_papel" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_names -i 78 -d 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_get -i 79 -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- step_over -i 80 +[72] [Step Debug] -> + +[72] [Step Debug] <- stack_get -i 81 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 82 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 83 -n "$return_data['errors']->status" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 84 -n "$uso" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 85 -n "$datos_papel" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_names -i 86 -d 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_get -i 87 -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- step_over -i 88 +[72] [Step Debug] -> + +[72] [Step Debug] <- stack_get -i 89 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 90 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 91 -n "$return_data['errors']->status" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 92 -n "$uso" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 93 -n "$datos_papel" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_names -i 94 -d 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_get -i 95 -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- step_over -i 96 +[72] [Step Debug] -> + +[72] [Step Debug] <- stack_get -i 97 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 98 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 99 -n "$return_data['errors']->status" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 100 -n "$uso" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 101 -n "$datos_papel" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_names -i 102 -d 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_get -i 103 -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 104 -n "$model_direcciones->getIdForPresupuestoCliente" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- step_over -i 105 +[72] [Step Debug] -> + +[72] [Step Debug] <- stack_get -i 106 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 107 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 108 -n "$return_data['errors']->status" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 109 -n "$uso" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 110 -n "$datos_papel" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_names -i 111 -d 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_get -i 112 -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- run -i 113 +[72] [Step Debug] -> + +[72] Log closed at 2024-10-22 15:39:05.679994 + +[72] Log opened at 2024-10-22 15:39:05.795473 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] -> + +[72] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[72] [Step Debug] -> + +[72] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[72] [Step Debug] -> + +[72] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[72] [Step Debug] -> + +[72] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[72] [Step Debug] -> + +[72] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[72] [Step Debug] -> + +[72] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[72] [Step Debug] -> + +[72] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 +[72] [Step Debug] -> + +[72] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1801 +[72] [Step Debug] -> + +[72] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 +[72] [Step Debug] -> + +[72] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[72] [Step Debug] -> + +[72] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[72] [Step Debug] -> + +[72] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[72] [Step Debug] -> + +[72] [Step Debug] <- run -i 13 +[72] [Step Debug] -> + +[72] [Step Debug] -> + +[72] [Step Debug] -> + +[72] [Step Debug] -> + +[72] [Step Debug] -> + +[72] [Step Debug] <- stack_get -i 14 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 15 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 16 -n "$return_data['errors']->status" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 17 -n "$uso" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 18 -n "$datos_papel" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_names -i 19 -d 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_get -i 20 -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- breakpoint_remove -i 21 -d 720010 +[72] [Step Debug] -> + +[72] [Step Debug] <- run -i 22 +[72] [Step Debug] -> + +[72] Log closed at 2024-10-22 15:39:14.799586 + +[73] Log opened at 2024-10-22 15:39:25.262736 +[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' +[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[73] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] -> + +[73] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[73] [Step Debug] -> + +[73] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[73] [Step Debug] -> + +[73] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[73] [Step Debug] -> + +[73] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[73] [Step Debug] -> + +[73] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[73] [Step Debug] -> + +[73] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[73] [Step Debug] -> + +[73] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 +[73] [Step Debug] -> + +[73] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 +[73] [Step Debug] -> + +[73] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[73] [Step Debug] -> + +[73] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[73] [Step Debug] -> + +[73] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[73] [Step Debug] -> + +[73] [Step Debug] <- run -i 12 +[73] [Step Debug] -> + +[73] Log closed at 2024-10-22 15:39:25.901035 + +[73] Log opened at 2024-10-22 15:39:29.699549 +[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' +[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[73] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] -> + +[73] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[73] [Step Debug] -> + +[73] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[73] [Step Debug] -> + +[73] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[73] [Step Debug] -> + +[73] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[73] [Step Debug] -> + +[73] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[73] [Step Debug] -> + +[73] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[73] [Step Debug] -> + +[73] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 +[73] [Step Debug] -> + +[73] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 +[73] [Step Debug] -> + +[73] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[73] [Step Debug] -> + +[73] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[73] [Step Debug] -> + +[73] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[73] [Step Debug] -> + +[73] [Step Debug] <- run -i 12 +[73] [Step Debug] -> + +[73] Log closed at 2024-10-22 15:39:30.307417 + +[74] Log opened at 2024-10-22 15:39:50.405814 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[74] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[74] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[74] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[74] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[74] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 754 +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[74] [Step Debug] -> + +[74] [Step Debug] <- run -i 13 +[74] [Step Debug] -> + +[74] [Step Debug] -> + +[74] [Step Debug] -> + +[74] [Step Debug] -> + +[74] [Step Debug] -> + +[74] [Step Debug] <- stack_get -i 14 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 15 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 16 -n "$return_data['errors']->status" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 17 -n "$uso" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 18 -n "$datos_papel" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_names -i 19 -d 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_get -i 20 -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- step_over -i 21 +[74] [Step Debug] -> + +[74] [Step Debug] <- stack_get -i 22 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 23 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 24 -n "$return_data['errors']->status" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 25 -n "$uso" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 26 -n "$datos_papel" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_names -i 27 -d 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_get -i 28 -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 29 -n "$direcciones" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_remove -i 30 -d 740002 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 31 -n "$resultado_presupuesto" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893 +[74] [Step Debug] -> + +[74] [Step Debug] -> + +[74] [Step Debug] <- run -i 33 +[74] [Step Debug] -> + +[74] [Step Debug] <- stack_get -i 34 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 35 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 36 -n "$return_data['errors']->status" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 37 -n "$uso" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 38 -n "$datos_papel" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_names -i 39 -d 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_get -i 40 -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 41 -n "$reqData" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_names -i 42 -d 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 43 -n "$reqData['direcciones']" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 44 -n "$return_data['errors']->status" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 45 -n "$uso" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 46 -n "$datos_papel" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_get -i 47 -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 48 -n "$reqData['direcciones']" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 49 -n "$uso" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 50 -n "$datos_papel" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 51 -n "$reqData['direcciones']" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 52 -n "$datos_papel" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 53 -n "$reqData['direcciones']" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_remove -i 54 -d 740008 +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 55 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 +[74] [Step Debug] -> + +[74] [Step Debug] -> + +[74] [Step Debug] <- run -i 56 +[74] [Step Debug] -> + +[74] [Step Debug] <- stack_get -i 57 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 58 -n "$reqData['direcciones']" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_names -i 59 -d 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_get -i 60 -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- step_over -i 61 +[74] [Step Debug] -> + +[74] [Step Debug] <- stack_get -i 62 +[74] [Step Debug] -> + +[74] [Step Debug] <- stack_get -i 63 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 64 -n "$reqData['direcciones']" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_names -i 65 -d 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_get -i 66 -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- step_over -i 67 +[74] [Step Debug] -> + +[74] [Step Debug] <- stack_get -i 68 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 69 -n "$reqData['direcciones']" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_names -i 70 -d 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_get -i 71 -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- step_over -i 72 +[74] [Step Debug] -> + +[74] [Step Debug] <- stack_get -i 73 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 74 -n "$reqData['direcciones']" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_names -i 75 -d 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_get -i 76 -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- step_over -i 77 +[74] [Step Debug] -> + +[74] [Step Debug] <- stack_get -i 78 +[74] [Step Debug] -> + +[74] [Step Debug] <- stack_get -i 79 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 80 -n "$reqData['direcciones']" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_names -i 81 -d 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_get -i 82 -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 83 -n "$data[0]" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 84 -n "$model->insert" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- step_over -i 85 +[74] [Step Debug] -> + +[74] [Step Debug] <- stack_get -i 86 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 87 -n "$reqData['direcciones']" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_names -i 88 -d 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_get -i 89 -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 90 -n "$data[0]" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- step_over -i 91 +[74] [Step Debug] -> + +[74] [Step Debug] <- stack_get -i 92 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 93 -n "$reqData['direcciones']" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_names -i 94 -d 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_get -i 95 -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 96 -n "$data[0]" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- step_over -i 97 +[74] [Step Debug] -> + +[74] [Step Debug] <- stack_get -i 98 +[74] [Step Debug] -> + +[74] [Step Debug] <- stack_get -i 99 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 100 -n "$reqData['direcciones']" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- step_over -i 101 +[74] [Step Debug] -> + +[74] [Step Debug] <- stack_get -i 102 +[74] [Step Debug] -> + +[74] [Step Debug] <- stack_get -i 103 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 104 -n "$reqData['direcciones']" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_names -i 105 -d 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- step_over -i 106 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_get -i 107 -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- stack_get -i 108 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 109 -n "$data[0]" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 110 -n "$reqData['direcciones']" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- step_over -i 111 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_names -i 112 -d 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- stack_get -i 113 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_get -i 114 -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 115 -n "$data[0]" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 116 -n "$reqData['direcciones']" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_names -i 117 -d 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_get -i 118 -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 119 -n "$data[0]" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- step_over -i 120 +[74] [Step Debug] -> + +[74] [Step Debug] <- stack_get -i 121 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 122 -n "$reqData['direcciones']" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- step_over -i 123 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_names -i 124 -d 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- stack_get -i 125 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_get -i 126 -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 127 -n "$data[0]" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 128 -n "$reqData['direcciones']" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- step_over -i 129 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_names -i 130 -d 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- stack_get -i 131 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_get -i 132 -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 133 -n "$data[0]" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 134 -n "$reqData['direcciones']" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_names -i 135 -d 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_get -i 136 -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 137 -n "$data[0]" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- step_over -i 138 +[74] [Step Debug] -> + +[74] [Step Debug] <- stack_get -i 139 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 140 -n "$reqData['direcciones']" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_names -i 141 -d 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_get -i 142 -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 143 -n "$data[0]" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- step_over -i 144 +[74] [Step Debug] -> + +[74] [Step Debug] <- stack_get -i 145 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 146 -n "$reqData['direcciones']" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_names -i 147 -d 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- context_get -i 148 -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- property_get -i 149 -n "$data[0]" -d 0 -c 0 +[74] [Step Debug] -> + +[74] [Step Debug] <- run -i 150 +[74] [Step Debug] -> + +[74] Log closed at 2024-10-22 15:42:13.030067 + +[79] Log opened at 2024-10-22 15:42:30.559151 +[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' +[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[79] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] -> + +[79] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[79] [Step Debug] -> + +[79] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[79] [Step Debug] -> + +[79] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[79] [Step Debug] -> + +[79] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[79] [Step Debug] -> + +[79] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[79] [Step Debug] -> + +[79] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[79] [Step Debug] -> + +[79] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 +[79] [Step Debug] -> + +[79] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 +[79] [Step Debug] -> + +[79] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 +[79] [Step Debug] -> + +[79] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[79] [Step Debug] -> + +[79] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[79] [Step Debug] -> + +[79] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[79] [Step Debug] -> + +[79] [Step Debug] <- run -i 13 +[79] [Step Debug] -> + +[79] [Step Debug] -> + +[79] [Step Debug] -> + +[79] [Step Debug] -> + +[79] [Step Debug] -> + +[79] Log closed at 2024-10-22 15:42:31.883794 + +[79] Log opened at 2024-10-22 15:42:32.156361 +[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' +[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[79] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] -> + +[79] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[79] [Step Debug] -> + +[79] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[79] [Step Debug] -> + +[79] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[79] [Step Debug] -> + +[79] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[79] [Step Debug] -> + +[79] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[79] [Step Debug] -> + +[79] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[79] [Step Debug] -> + +[79] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 +[79] [Step Debug] -> + +[79] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 +[79] [Step Debug] -> + +[79] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 +[79] [Step Debug] -> + +[79] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[79] [Step Debug] -> + +[79] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[79] [Step Debug] -> + +[79] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[79] [Step Debug] -> + +[78] Log opened at 2024-10-22 15:42:32.228922 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[78] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] -> + +[79] [Step Debug] <- run -i 13 +[78] [Step Debug] <- run -i 1 +[79] [Step Debug] -> + +[79] Log closed at 2024-10-22 15:42:32.345372 + +[78] [Step Debug] -> + +[78] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[78] [Step Debug] -> + +[78] Log closed at 2024-10-22 15:42:32.460633 + +[63] Log opened at 2024-10-22 15:42:32.865117 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[63] [Step Debug] -> + +[63] [Step Debug] <- run -i 13 +[63] [Step Debug] -> + +[63] Log closed at 2024-10-22 15:42:33.090640 + +[63] Log opened at 2024-10-22 15:42:33.122657 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[63] [Step Debug] -> + +[63] [Step Debug] <- run -i 13 +[52] Log opened at 2024-10-22 15:42:33.262652 +[68] Log opened at 2024-10-22 15:42:33.262654 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] -> + +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[68] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[68] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[68] [Step Debug] -> + +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[68] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[68] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[52] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[68] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[52] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 +[52] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 +[68] [Step Debug] -> + +[52] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 +[68] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 +[52] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[68] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[68] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[68] [Step Debug] -> + +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[68] [Step Debug] -> + +[52] [Step Debug] <- run -i 13 +[68] [Step Debug] <- run -i 13 +[68] [Step Debug] -> + +[68] Log closed at 2024-10-22 15:42:33.844500 + +[63] [Step Debug] -> + +[63] Log closed at 2024-10-22 15:42:34.241699 + +[52] [Step Debug] -> + +[52] Log closed at 2024-10-22 15:42:34.386472 + +[77] Log opened at 2024-10-22 15:42:34.462877 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[77] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[77] [Step Debug] -> + +[77] [Step Debug] <- run -i 13 +[77] [Step Debug] -> + +[77] [Step Debug] -> + +[77] [Step Debug] -> + +[77] [Step Debug] -> + +[77] [Step Debug] -> + +[77] [Step Debug] <- stack_get -i 14 +[77] [Step Debug] -> + +[77] [Step Debug] <- property_get -i 15 -n "$reqData['direcciones']" -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- context_names -i 16 -d 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- context_get -i 17 -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- run -i 18 +[77] [Step Debug] -> + +[77] [Step Debug] <- stack_get -i 19 +[77] [Step Debug] -> + +[77] [Step Debug] <- stack_get -i 20 +[77] [Step Debug] -> + +[77] [Step Debug] <- property_get -i 21 -n "$reqData['direcciones']" -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- context_names -i 22 -d 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- context_get -i 23 -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- step_over -i 24 +[77] [Step Debug] -> + +[77] [Step Debug] <- stack_get -i 25 +[77] [Step Debug] -> + +[77] [Step Debug] <- stack_get -i 26 +[77] [Step Debug] -> + +[77] [Step Debug] <- property_get -i 27 -n "$reqData['direcciones']" -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- step_over -i 28 +[77] [Step Debug] -> + +[77] [Step Debug] <- stack_get -i 29 +[77] [Step Debug] -> + +[77] [Step Debug] <- property_get -i 30 -n "$reqData['direcciones']" -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- step_over -i 31 +[77] [Step Debug] -> + +[77] [Step Debug] <- stack_get -i 32 +[77] [Step Debug] -> + +[77] [Step Debug] <- property_get -i 33 -n "$reqData['direcciones']" -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- step_over -i 34 +[77] [Step Debug] -> + +[77] [Step Debug] <- stack_get -i 35 +[77] [Step Debug] -> + +[77] [Step Debug] <- property_get -i 36 -n "$reqData['direcciones']" -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- step_over -i 37 +[77] [Step Debug] -> + +[77] [Step Debug] <- stack_get -i 38 +[77] [Step Debug] -> + +[77] [Step Debug] <- stack_get -i 39 +[77] [Step Debug] -> + +[77] [Step Debug] <- property_get -i 40 -n "$reqData['direcciones']" -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- step_over -i 41 +[77] [Step Debug] -> + +[77] [Step Debug] <- stack_get -i 42 +[77] [Step Debug] -> + +[77] [Step Debug] <- property_get -i 43 -n "$reqData['direcciones']" -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- step_over -i 44 +[77] [Step Debug] -> + +[77] [Step Debug] <- stack_get -i 45 +[77] [Step Debug] -> + +[77] [Step Debug] <- property_get -i 46 -n "$reqData['direcciones']" -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- step_over -i 47 +[77] [Step Debug] -> + +[77] [Step Debug] <- context_names -i 48 -d 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- context_get -i 49 -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- stack_get -i 50 +[77] [Step Debug] -> + +[77] [Step Debug] <- property_get -i 51 -n "$reqData['direcciones']" -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- context_names -i 52 -d 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- context_get -i 53 -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- step_over -i 54 +[77] [Step Debug] -> + +[77] [Step Debug] <- stack_get -i 55 +[77] [Step Debug] -> + +[77] [Step Debug] <- property_get -i 56 -n "$reqData['direcciones']" -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- context_names -i 57 -d 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- context_get -i 58 -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- property_get -i 59 -n "$direccion_id[0]" -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- step_over -i 60 +[77] [Step Debug] -> + +[77] [Step Debug] <- stack_get -i 61 +[77] [Step Debug] -> + +[77] [Step Debug] <- stack_get -i 62 +[77] [Step Debug] -> + +[77] [Step Debug] <- property_get -i 63 -n "$reqData['direcciones']" -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- context_names -i 64 -d 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- context_get -i 65 -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- property_get -i 66 -n "$direccion_id[0]" -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- step_over -i 67 +[77] [Step Debug] -> + +[77] [Step Debug] <- stack_get -i 68 +[77] [Step Debug] -> + +[77] [Step Debug] <- stack_get -i 69 +[77] [Step Debug] -> + +[77] [Step Debug] <- property_get -i 70 -n "$reqData['direcciones']" -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- context_names -i 71 -d 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- context_get -i 72 -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- property_get -i 73 -n "$direccion_id[0]" -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- property_get -i 74 -n "$temp" -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 75 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 217 +[77] [Step Debug] -> + +[77] [Step Debug] <- run -i 76 +[77] [Step Debug] -> + +[77] Log closed at 2024-10-22 15:45:12.394773 + +[77] Log opened at 2024-10-22 15:45:12.438427 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[77] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 217 +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[77] [Step Debug] -> + +[77] [Step Debug] <- run -i 14 +[77] [Step Debug] -> + +[77] [Step Debug] -> + +[77] [Step Debug] <- stack_get -i 15 +[77] [Step Debug] -> + +[77] [Step Debug] <- property_get -i 16 -n "$reqData['direcciones']" -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- context_names -i 17 -d 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- property_get -i 19 -n "$id" -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- step_over -i 20 +[77] [Step Debug] -> + +[77] [Step Debug] <- stack_get -i 21 +[77] [Step Debug] -> + +[77] [Step Debug] <- property_get -i 22 -n "$reqData['direcciones']" -d 0 -c 0 +[77] [Step Debug] -> + +[72] Log opened at 2024-10-22 15:45:18.653776 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] -> + +[72] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[72] [Step Debug] -> + +[72] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[72] [Step Debug] -> + +[72] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[72] [Step Debug] -> + +[72] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[72] [Step Debug] -> + +[72] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[72] [Step Debug] -> + +[72] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 217 +[72] [Step Debug] -> + +[72] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[72] [Step Debug] -> + +[72] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 +[72] [Step Debug] -> + +[72] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 +[72] [Step Debug] -> + +[72] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 +[72] [Step Debug] -> + +[72] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[72] [Step Debug] -> + +[72] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[72] [Step Debug] -> + +[72] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[72] [Step Debug] -> + +[72] [Step Debug] <- run -i 14 +[77] [Step Debug] <- context_names -i 23 -d 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- context_get -i 24 -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- step_over -i 25 +[77] [Step Debug] -> + +[77] [Step Debug] <- stack_get -i 26 +[77] [Step Debug] -> + +[77] [Step Debug] <- property_get -i 27 -n "$reqData['direcciones']" -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- context_names -i 28 -d 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- context_get -i 29 -d 0 -c 0 +[77] [Step Debug] -> + +[77] [Step Debug] <- run -i 30 +[77] [Step Debug] -> + +[77] Log closed at 2024-10-22 15:45:36.384565 + +[72] [Step Debug] -> + +[72] [Step Debug] -> + +[72] [Step Debug] -> + +[72] [Step Debug] -> + +[72] [Step Debug] -> + +[72] Log closed at 2024-10-22 15:45:40.062330 + +[76] Log opened at 2024-10-22 15:50:20.712653 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 217 +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[76] [Step Debug] -> + +[76] [Step Debug] <- run -i 14 +[76] [Step Debug] -> + +[76] [Step Debug] -> + +[76] [Step Debug] -> + +[76] [Step Debug] -> + +[76] [Step Debug] -> + +[76] Log closed at 2024-10-22 15:50:22.071391 + +[76] Log opened at 2024-10-22 15:50:22.339315 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 217 +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[76] [Step Debug] -> + +[80] Log opened at 2024-10-22 15:50:22.423546 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[80] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[80] [Step Debug] -> + +[76] [Step Debug] <- run -i 14 +[80] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[80] [Step Debug] -> + +[80] [Step Debug] <- run -i 3 +[76] [Step Debug] -> + +[76] Log closed at 2024-10-22 15:50:22.509894 + +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[80] [Step Debug] -> + +[80] Log closed at 2024-10-22 15:50:22.666771 + +[63] Log opened at 2024-10-22 15:50:23.081124 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 217 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[63] [Step Debug] -> + +[63] [Step Debug] <- run -i 14 +[63] [Step Debug] -> + +[63] [Step Debug] <- stop -i 15 +[63] [Step Debug] -> + +[63] Log closed at 2024-10-22 15:50:23.349878 + +[63] Log opened at 2024-10-22 15:50:23.408260 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] Log opened at 2024-10-22 15:50:23.499989 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[79] Log opened at 2024-10-22 15:50:23.518146 +[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' +[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-10-22 15:50:24.563416 + +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-10-22 15:50:25.202045 + +[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[79] Log closed at 2024-10-22 15:50:25.548347 + +[78] Log opened at 2024-10-22 15:50:25.616305 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-10-22 15:50:27.079805 + +[63] Log opened at 2024-10-22 15:50:27.118542 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-10-22 15:50:28.292578 + +[78] Log opened at 2024-10-22 15:50:28.293327 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-10-22 15:50:33.093272 + +[80] Log opened at 2024-10-22 15:51:27.927257 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[80] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 217 +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[80] [Step Debug] -> + +[80] [Step Debug] <- run -i 14 +[80] [Step Debug] -> + +[80] [Step Debug] -> + +[80] [Step Debug] -> + +[80] [Step Debug] -> + +[80] [Step Debug] -> + +[80] Log closed at 2024-10-22 15:51:29.238823 + +[80] Log opened at 2024-10-22 15:51:29.464386 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[80] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 217 +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[80] [Step Debug] -> + +[80] [Step Debug] <- run -i 14 +[80] [Step Debug] -> + +[80] Log closed at 2024-10-22 15:51:29.671634 + +[78] Log opened at 2024-10-22 15:51:30.141826 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[78] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] -> + +[78] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[78] [Step Debug] -> + +[78] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[78] [Step Debug] -> + +[78] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[78] [Step Debug] -> + +[78] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[78] [Step Debug] -> + +[78] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 217 +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[78] [Step Debug] -> + +[78] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[78] [Step Debug] -> + +[76] Log opened at 2024-10-22 15:51:30.184435 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[68] Log opened at 2024-10-22 15:51:30.184582 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[68] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] -> + +[76] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[76] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[68] [Step Debug] -> + +[76] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[68] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[76] [Step Debug] -> + +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[76] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[76] [Step Debug] -> + +[68] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[68] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[76] [Step Debug] -> + +[68] [Step Debug] -> + +[76] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[76] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[68] [Step Debug] -> + +[76] [Step Debug] <- run -i 6 +[68] [Step Debug] <- run -i 6 +[78] [Step Debug] <- run -i 14 +[76] [Step Debug] -> + +[76] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 217 +[76] [Step Debug] -> + +[76] Log closed at 2024-10-22 15:51:30.678043 + +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 217 +[68] [Step Debug] -> + +[68] Log closed at 2024-10-22 15:51:30.814534 + +[63] Log opened at 2024-10-22 15:51:30.879058 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 217 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[63] [Step Debug] -> + +[63] [Step Debug] <- run -i 14 +[78] [Step Debug] -> + +[78] [Step Debug] <- stop -i 15 +[78] [Step Debug] -> + +[78] Log closed at 2024-10-22 15:51:31.367448 + +[63] [Step Debug] -> + +[63] [Step Debug] -> + +[63] [Step Debug] -> + +[63] [Step Debug] -> + +[63] [Step Debug] -> + +[63] [Step Debug] <- stop -i 15 +[63] [Step Debug] -> + +[63] [Step Debug] -> + +[63] Log closed at 2024-10-22 15:51:31.861877 + +[74] Log opened at 2024-10-22 15:51:37.623780 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-10-22 15:51:39.396889 + +[74] Log opened at 2024-10-22 15:51:39.614324 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-10-22 15:51:40.276557 + +[80] Log opened at 2024-10-22 15:51:40.681764 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] Log opened at 2024-10-22 15:51:40.784770 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] Log opened at 2024-10-22 15:51:40.791742 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-22 15:51:41.786552 + +[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-22 15:51:42.359099 + +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-22 15:51:42.705862 + +[79] Log opened at 2024-10-22 15:51:42.756002 +[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' +[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[79] Log closed at 2024-10-22 15:51:44.240041 + +[80] Log opened at 2024-10-22 15:51:44.276528 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[79] Log opened at 2024-10-22 15:51:44.356212 +[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' +[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-22 15:51:45.445250 + +[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[79] Log closed at 2024-10-22 15:51:48.941896 + +[63] Log opened at 2024-10-22 15:52:13.707374 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-10-22 15:52:15.356768 + +[63] Log opened at 2024-10-22 15:52:15.557148 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-10-22 15:52:16.213963 + +[76] Log opened at 2024-10-22 15:52:16.590759 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] Log opened at 2024-10-22 15:52:16.706077 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[74] Log opened at 2024-10-22 15:52:16.713019 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-22 15:52:17.678063 + +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-10-22 15:52:18.256074 + +[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-10-22 15:52:18.601456 + +[72] Log opened at 2024-10-22 15:52:18.648263 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] Log closed at 2024-10-22 15:52:20.054179 + +[76] Log opened at 2024-10-22 15:52:20.088923 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] Log opened at 2024-10-22 15:52:20.149590 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-10-22 15:52:21.317330 + +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] Log closed at 2024-10-22 15:52:25.166493 + +[78] Log opened at 2024-10-22 15:52:40.838418 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-10-22 15:52:42.611138 + +[78] Log opened at 2024-10-22 15:52:42.868169 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-10-22 15:52:43.526832 + +[84] Log opened at 2024-10-22 15:52:43.931575 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] Log opened at 2024-10-22 15:52:44.069183 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[83] Log opened at 2024-10-22 15:52:44.112188 +[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' +[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-10-22 15:52:45.052948 + +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-10-22 15:52:45.652736 + +[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[83] Log closed at 2024-10-22 15:52:46.016492 + +[82] Log opened at 2024-10-22 15:52:46.062871 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-22 15:52:47.604549 + +[84] Log opened at 2024-10-22 15:52:47.647044 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] Log opened at 2024-10-22 15:52:47.736394 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-10-22 15:52:48.721995 + +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-22 15:52:52.594848 + +[72] Log opened at 2024-10-22 16:01:01.071506 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] Log closed at 2024-10-22 16:01:02.799682 + +[72] Log opened at 2024-10-22 16:01:03.036081 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] Log closed at 2024-10-22 16:01:03.692207 + +[76] Log opened at 2024-10-22 16:01:04.322915 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] Log opened at 2024-10-22 16:01:04.440956 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[79] Log opened at 2024-10-22 16:01:04.452946 +[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' +[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-10-22 16:01:05.430255 + +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-10-22 16:01:06.037104 + +[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[79] Log closed at 2024-10-22 16:01:06.378967 + +[76] Log opened at 2024-10-22 16:01:06.426297 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-10-22 16:01:07.995761 + +[76] Log opened at 2024-10-22 16:01:08.035368 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] Log opened at 2024-10-22 16:01:08.102669 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-10-22 16:01:09.106332 + +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-10-22 16:01:12.614740 + +[63] Log opened at 2024-10-22 16:01:14.247361 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-10-22 16:01:21.133530 + +[82] Log opened at 2024-10-22 16:03:13.645165 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-22 16:03:15.455261 + +[82] Log opened at 2024-10-22 16:03:15.724067 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-22 16:03:16.390444 + +[78] Log opened at 2024-10-22 16:03:16.859530 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] Log opened at 2024-10-22 16:03:16.869767 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[86] Log opened at 2024-10-22 16:03:16.881078 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-22 16:03:17.911045 + +[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-10-22 16:03:18.511891 + +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-22 16:03:18.858207 + +[81] Log opened at 2024-10-22 16:03:18.901914 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-22 16:03:20.503290 + +[78] Log opened at 2024-10-22 16:03:20.551774 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] Log opened at 2024-10-22 16:03:20.649149 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-10-22 16:03:21.672490 + +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-22 16:03:25.178234 + +[81] Log opened at 2024-10-22 16:03:26.799859 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-22 16:03:34.363256 + +[63] Log opened at 2024-10-22 16:05:23.835111 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-10-22 16:05:25.611443 + +[63] Log opened at 2024-10-22 16:05:25.848215 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-10-22 16:05:26.519999 + +[72] Log opened at 2024-10-22 16:05:27.079797 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] Log opened at 2024-10-22 16:05:27.081298 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-22 16:05:28.064529 + +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] Log closed at 2024-10-22 16:05:28.713316 + +[81] Log opened at 2024-10-22 16:05:53.582553 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-22 16:05:55.320186 + +[81] Log opened at 2024-10-22 16:05:55.574467 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-22 16:05:56.250007 + +[63] Log opened at 2024-10-22 16:05:56.695323 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[88] Log opened at 2024-10-22 16:05:56.794914 +[85] Log opened at 2024-10-22 16:05:56.794909 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-10-22 16:05:57.807016 + +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-10-22 16:05:58.446438 + +[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-10-22 16:05:58.787978 + +[84] Log opened at 2024-10-22 16:05:58.837133 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-10-22 16:06:00.360845 + +[72] Log opened at 2024-10-22 16:06:19.086126 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] Log closed at 2024-10-22 16:06:20.820026 + +[72] Log opened at 2024-10-22 16:06:21.032581 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] Log closed at 2024-10-22 16:06:21.689967 + +[81] Log opened at 2024-10-22 16:06:22.047011 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[89] Log opened at 2024-10-22 16:06:22.139350 +[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89' +[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] Log opened at 2024-10-22 16:06:22.142474 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[89] Log closed at 2024-10-22 16:06:23.101232 + +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-22 16:06:23.771469 + +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-10-22 16:06:24.109331 + +[78] Log opened at 2024-10-22 16:06:24.152910 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-10-22 16:06:25.694352 + +[81] Log opened at 2024-10-22 16:06:25.727084 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-22 16:06:26.867042 + +[82] Log opened at 2024-10-22 16:07:41.318447 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-22 16:07:43.291570 + +[82] Log opened at 2024-10-22 16:07:43.531079 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-22 16:07:44.231025 + +[85] Log opened at 2024-10-22 16:07:44.719425 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] Log opened at 2024-10-22 16:07:44.766318 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[90] Log opened at 2024-10-22 16:07:44.767279 +[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90' +[90] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] Log closed at 2024-10-22 16:07:45.787049 + +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[90] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-10-22 16:07:46.450265 + +[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[90] Log closed at 2024-10-22 16:07:46.801811 + +[76] Log opened at 2024-10-22 16:07:46.865296 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-10-22 16:07:48.549993 + +[85] Log opened at 2024-10-22 16:07:48.582069 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-10-22 16:07:49.846888 + +[88] Log opened at 2024-10-22 16:08:01.205955 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-10-22 16:08:03.029621 + +[88] Log opened at 2024-10-22 16:08:03.292830 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-10-22 16:08:03.967809 + +[84] Log opened at 2024-10-22 16:08:04.337851 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] Log opened at 2024-10-22 16:08:04.471956 +[82] Log opened at 2024-10-22 16:08:04.471956 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-22 16:08:05.480693 + +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-10-22 16:08:06.163216 + +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] Log closed at 2024-10-22 16:08:06.526988 + +[91] Log opened at 2024-10-22 16:08:06.577769 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[91] Log closed at 2024-10-22 16:08:08.194383 + +[76] Log opened at 2024-10-22 16:29:38.527002 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-10-22 16:29:41.092210 + +[76] Log opened at 2024-10-22 16:29:41.347527 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] Log opened at 2024-10-22 16:29:41.362368 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-10-22 16:29:42.030694 + +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[91] Log opened at 2024-10-22 16:29:42.334388 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-10-22 16:29:42.464472 + +[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] Log opened at 2024-10-22 16:29:42.541353 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] Log opened at 2024-10-22 16:29:42.547878 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] Log closed at 2024-10-22 16:29:43.551337 + +[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[91] Log closed at 2024-10-22 16:29:44.182168 + +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-10-22 16:29:44.530311 + +[72] Log opened at 2024-10-22 16:29:44.592764 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] Log closed at 2024-10-22 16:29:46.079452 + +[72] Log opened at 2024-10-22 16:29:46.120578 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] Log closed at 2024-10-22 16:29:47.256091 + +[72] Log opened at 2024-10-22 16:29:50.628471 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] Log closed at 2024-10-22 16:29:54.955446 + +[72] Log opened at 2024-10-22 16:29:57.229221 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] Log closed at 2024-10-22 16:30:04.392085 + +[88] Log opened at 2024-10-22 16:31:54.632492 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-10-22 16:31:56.419272 + +[88] Log opened at 2024-10-22 16:31:56.677552 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] Log opened at 2024-10-22 16:31:56.678365 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-22 16:31:57.351633 + +[85] Log opened at 2024-10-22 16:31:57.757046 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] Log opened at 2024-10-22 16:31:57.950045 +[82] Log opened at 2024-10-22 16:31:57.950051 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-10-22 16:32:04.342498 + +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-22 16:32:04.790981 + +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-10-22 16:32:05.361986 + +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-22 16:32:05.731131 + +[85] Log opened at 2024-10-22 16:32:05.792467 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-10-22 16:32:07.250831 + +[84] Log opened at 2024-10-22 16:32:24.741888 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-10-22 16:32:25.879924 + +[84] Log opened at 2024-10-22 16:32:30.641245 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-10-22 16:32:34.988071 + +[92] Log opened at 2024-10-22 16:34:19.218245 +[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' +[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[92] Log closed at 2024-10-22 16:34:21.007892 + +[92] Log opened at 2024-10-22 16:34:21.261206 +[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' +[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] Log opened at 2024-10-22 16:34:21.262292 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-22 16:34:21.926200 + +[93] Log opened at 2024-10-22 16:34:22.323069 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] Log opened at 2024-10-22 16:34:22.513807 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[88] Log opened at 2024-10-22 16:34:22.515984 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[92] Log closed at 2024-10-22 16:34:28.808159 + +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-22 16:34:29.261665 + +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-10-22 16:34:29.875583 + +[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-10-22 16:34:30.216984 + +[93] Log opened at 2024-10-22 16:34:30.285311 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-10-22 16:34:32.744975 + +[93] Log opened at 2024-10-22 16:34:32.772257 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] Log opened at 2024-10-22 16:34:32.832312 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-10-22 16:34:34.362257 + +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-22 16:34:38.591919 + +[84] Log opened at 2024-10-22 16:35:16.033722 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-10-22 16:35:17.781107 + +[84] Log opened at 2024-10-22 16:35:18.049210 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] Log opened at 2024-10-22 16:35:18.049823 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] Log closed at 2024-10-22 16:35:18.708930 + +[81] Log opened at 2024-10-22 16:35:19.180397 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[92] Log opened at 2024-10-22 16:35:19.402215 +[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' +[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] Log opened at 2024-10-22 16:35:19.405103 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-10-22 16:35:25.251137 + +[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[92] Log closed at 2024-10-22 16:35:25.709807 + +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-22 16:35:26.343182 + +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-10-22 16:35:26.693588 + +[81] Log opened at 2024-10-22 16:35:26.749426 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-22 16:35:28.184137 + +[81] Log opened at 2024-10-22 16:35:28.217897 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[92] Log opened at 2024-10-22 16:35:28.311159 +[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' +[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-22 16:35:29.317553 + +[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[92] Log closed at 2024-10-22 16:35:32.983555 + +[94] Log opened at 2024-10-22 16:39:11.557124 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-22 16:39:13.325299 + +[94] Log opened at 2024-10-22 16:39:13.600180 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-22 16:39:14.270600 + +[96] Log opened at 2024-10-22 16:39:14.668944 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] Log opened at 2024-10-22 16:39:14.751461 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] Log opened at 2024-10-22 16:39:14.779302 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-22 16:39:15.748019 + +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-10-22 16:39:16.388124 + +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-10-22 16:39:16.741650 + +[84] Log opened at 2024-10-22 16:39:16.796470 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-10-22 16:39:18.326819 + +[84] Log opened at 2024-10-22 16:39:22.778514 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] Log opened at 2024-10-22 16:39:22.880355 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-10-22 16:39:23.980694 + +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-10-22 16:39:32.530663 + +[97] Log opened at 2024-10-22 16:41:55.259394 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-10-22 16:41:57.024461 + +[97] Log opened at 2024-10-22 16:41:57.310584 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-10-22 16:41:57.970937 + +[72] Log opened at 2024-10-22 16:41:58.393692 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] Log opened at 2024-10-22 16:41:58.496888 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] Log opened at 2024-10-22 16:41:58.498011 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-22 16:41:59.538024 + +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] Log closed at 2024-10-22 16:42:00.124919 + +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-22 16:42:00.474953 + +[96] Log opened at 2024-10-22 16:42:00.520657 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-10-22 16:42:02.062718 + +[72] Log opened at 2024-10-22 16:42:02.095884 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] Log opened at 2024-10-22 16:42:02.173506 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[72] Log closed at 2024-10-22 16:42:03.214957 + +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-10-22 16:42:06.595261 + +[93] Log opened at 2024-10-22 16:42:30.781295 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-10-22 16:42:33.156289 + +[93] Log opened at 2024-10-22 16:42:33.362988 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-10-22 16:42:34.036917 + +[95] Log opened at 2024-10-22 16:42:34.412009 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] Log opened at 2024-10-22 16:42:34.518580 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[98] Log opened at 2024-10-22 16:42:34.518962 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-10-22 16:42:35.518770 + +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-22 16:42:36.155760 + +[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-10-22 16:42:36.497686 + +[97] Log opened at 2024-10-22 16:42:36.541946 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-10-22 16:42:37.986731 + +[95] Log opened at 2024-10-22 16:42:38.019676 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[97] Log opened at 2024-10-22 16:42:38.085572 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-10-22 16:42:42.377821 + +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-22 16:42:42.770400 + +[76] Log opened at 2024-10-22 16:43:03.973443 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-10-22 16:43:05.756928 + +[76] Log opened at 2024-10-22 16:43:05.957709 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-10-22 16:43:06.628242 + +[85] Log opened at 2024-10-22 16:43:07.079639 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] Log opened at 2024-10-22 16:43:07.162037 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[99] Log opened at 2024-10-22 16:43:07.162446 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-22 16:43:08.143634 + +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-10-22 16:43:08.757047 + +[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-10-22 16:43:09.169795 + +[85] Log opened at 2024-10-22 16:43:09.224603 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-10-22 16:43:10.757495 + +[85] Log opened at 2024-10-22 16:43:10.790310 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] Log opened at 2024-10-22 16:43:10.850498 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-10-22 16:43:12.039917 + +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-22 16:43:16.007186 + +[95] Log opened at 2024-10-22 16:43:27.776777 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-22 16:43:29.581026 + +[96] Log opened at 2024-10-22 16:43:29.796303 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-10-22 16:43:30.455564 + +[93] Log opened at 2024-10-22 16:43:30.821230 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[100] Log opened at 2024-10-22 16:43:30.927654 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[92] Log opened at 2024-10-22 16:43:30.942440 +[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' +[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-10-22 16:43:31.911399 + +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-10-22 16:43:32.515876 + +[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[92] Log closed at 2024-10-22 16:43:32.851704 + +[76] Log opened at 2024-10-22 16:43:32.899043 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-10-22 16:43:34.338963 + +[93] Log opened at 2024-10-22 16:43:34.370167 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] Log opened at 2024-10-22 16:43:34.436305 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-10-22 16:43:35.450426 + +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-10-22 16:43:39.552380 + +[94] Log opened at 2024-10-22 16:43:50.457992 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-22 16:43:52.211738 + +[94] Log opened at 2024-10-22 16:43:52.406367 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-22 16:43:53.063839 + +[96] Log opened at 2024-10-22 16:43:53.399911 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[101] Log opened at 2024-10-22 16:43:53.518702 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[97] Log opened at 2024-10-22 16:43:53.524289 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-10-22 16:43:54.511206 + +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-10-22 16:43:55.087735 + +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-10-22 16:43:55.432682 + +[95] Log opened at 2024-10-22 16:43:55.481430 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-22 16:43:56.980546 + +[96] Log opened at 2024-10-22 16:43:57.011267 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] Log opened at 2024-10-22 16:43:57.079275 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-10-22 16:43:58.100993 + +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-22 16:44:01.855631 + +[76] Log opened at 2024-10-22 16:44:28.543645 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-10-22 16:44:30.318367 + +[76] Log opened at 2024-10-22 16:44:30.596836 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-10-22 16:44:31.257670 + +[100] Log opened at 2024-10-22 16:44:31.619063 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] Log opened at 2024-10-22 16:44:31.762402 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[102] Log opened at 2024-10-22 16:44:31.808134 +[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. +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-22 16:44:32.783944 + +[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-10-22 16:44:33.389995 + +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-10-22 16:44:33.750143 + +[101] Log opened at 2024-10-22 16:44:33.847523 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-10-22 16:44:35.265597 + +[100] Log opened at 2024-10-22 16:44:35.319373 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-10-22 16:44:36.421226 + +[96] Log opened at 2024-10-22 16:44:42.074851 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-10-22 16:44:46.633869 + +[93] Log opened at 2024-10-22 16:44:55.423979 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-10-22 16:44:57.288722 + +[93] Log opened at 2024-10-22 16:44:57.590115 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-10-22 16:44:58.250873 + +[94] Log opened at 2024-10-22 16:44:58.631350 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] Log opened at 2024-10-22 16:44:58.753733 +[76] Log opened at 2024-10-22 16:44:58.753731 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-10-22 16:44:59.782869 + +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-22 16:45:00.345326 + +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-10-22 16:45:00.685943 + +[103] Log opened at 2024-10-22 16:45:00.732035 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] Log closed at 2024-10-22 16:45:02.170302 + +[94] Log opened at 2024-10-22 16:45:02.201784 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] Log opened at 2024-10-22 16:45:02.269771 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-22 16:45:03.321714 + +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] Log closed at 2024-10-22 16:45:07.058776 + +[96] Log opened at 2024-10-22 16:45:55.485046 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-10-22 16:45:57.232427 + +[96] Log opened at 2024-10-22 16:45:57.465322 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-10-22 16:45:58.125818 + +[76] Log opened at 2024-10-22 16:45:58.515742 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] Log opened at 2024-10-22 16:45:58.629653 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[102] Log opened at 2024-10-22 16:45:58.630508 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-22 16:45:59.594826 + +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-10-22 16:46:00.162333 + +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-10-22 16:46:00.503260 + +[93] Log opened at 2024-10-22 16:46:00.549793 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-10-22 16:46:02.076780 + +[76] Log opened at 2024-10-22 16:46:02.113060 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] Log opened at 2024-10-22 16:46:02.179498 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-10-22 16:46:03.202577 + +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-10-22 16:46:07.084310 + +[103] Log opened at 2024-10-22 16:47:08.651376 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] Log closed at 2024-10-22 16:47:10.364202 + +[103] Log opened at 2024-10-22 16:47:10.598138 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] Log closed at 2024-10-22 16:47:11.261108 + +[96] Log opened at 2024-10-22 16:47:11.741030 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[105] Log opened at 2024-10-22 16:47:11.899256 +[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' +[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[104] Log opened at 2024-10-22 16:47:11.905522 +[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' +[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[105] Log closed at 2024-10-22 16:47:12.848468 + +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-10-22 16:47:13.473624 + +[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[104] Log closed at 2024-10-22 16:47:13.823591 + +[96] Log opened at 2024-10-22 16:47:13.866622 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-10-22 16:47:15.324280 + +[96] Log opened at 2024-10-22 16:47:15.355767 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[105] Log opened at 2024-10-22 16:47:15.420103 +[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' +[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-10-22 16:47:16.475615 + +[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[105] Log closed at 2024-10-22 16:47:20.061608 + +[76] Log opened at 2024-10-22 16:47:34.345403 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-10-22 16:47:42.069248 + +[94] Log opened at 2024-10-22 16:48:05.329338 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-22 16:48:07.024293 + +[94] Log opened at 2024-10-22 16:48:07.233830 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-22 16:48:07.893884 + +[104] Log opened at 2024-10-22 16:48:08.266265 +[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' +[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] Log opened at 2024-10-22 16:48:08.370015 +[95] Log opened at 2024-10-22 16:48:08.370015 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-22 16:48:09.355469 + +[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[104] Log closed at 2024-10-22 16:48:09.942486 + +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] Log closed at 2024-10-22 16:48:10.288252 + +[100] Log opened at 2024-10-22 16:48:10.348893 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-10-22 16:48:11.798947 + +[104] Log opened at 2024-10-22 16:48:11.831459 +[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' +[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[104] Log closed at 2024-10-22 16:48:12.944663 + +[105] Log opened at 2024-10-22 16:48:18.495015 +[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' +[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[105] Log closed at 2024-10-22 16:48:24.023533 + +[93] Log opened at 2024-10-22 16:48:44.064514 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-10-22 16:48:45.763354 + +[93] Log opened at 2024-10-22 16:48:45.966099 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-10-22 16:48:46.629596 + +[106] Log opened at 2024-10-22 16:48:47.483905 +[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' +[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] Log opened at 2024-10-22 16:48:47.635532 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] Log opened at 2024-10-22 16:48:47.641522 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-22 16:48:48.681507 + +[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[106] Log closed at 2024-10-22 16:48:49.268765 + +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] Log closed at 2024-10-22 16:48:49.605324 + +[106] Log opened at 2024-10-22 16:48:49.657227 +[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' +[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[106] Log closed at 2024-10-22 16:48:51.111602 + +[106] Log opened at 2024-10-22 16:48:51.140158 +[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' +[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] Log opened at 2024-10-22 16:48:51.214794 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[106] Log closed at 2024-10-22 16:48:52.212716 + +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-22 16:48:55.924195 + +[94] Log opened at 2024-10-22 16:48:59.323090 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-22 16:49:06.561492 + +[76] Log opened at 2024-10-22 16:51:05.455664 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-10-22 16:51:07.169380 + +[108] Log opened at 2024-10-22 16:51:07.420494 +[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' +[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[108] Log closed at 2024-10-22 16:51:08.093708 + +[107] Log opened at 2024-10-22 16:51:08.583218 +[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' +[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[108] Log opened at 2024-10-22 16:51:08.634367 +[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. +[93] Log opened at 2024-10-22 16:51:08.643558 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[108] Log closed at 2024-10-22 16:51:09.759067 + +[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. +[93] [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-22 16:51:10.375815 + +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-10-22 16:51:10.738484 + +[95] Log opened at 2024-10-22 16:51:10.788648 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-22 16:51:12.321380 + +[107] Log opened at 2024-10-22 16:51:12.358716 +[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. +[95] Log opened at 2024-10-22 16:51:12.432688 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-22 16:51:13.509477 + +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-22 16:51:17.281914 + +[105] Log opened at 2024-10-22 16:53:05.189138 +[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' +[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[105] Log closed at 2024-10-22 16:53:06.912566 + +[105] Log opened at 2024-10-22 16:53:07.173516 +[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' +[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[105] Log closed at 2024-10-22 16:53:07.838252 + +[109] Log opened at 2024-10-22 16:53:08.338816 +[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' +[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] Log opened at 2024-10-22 16:53:08.541046 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] Log opened at 2024-10-22 16:53:08.548188 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] Log closed at 2024-10-22 16:53:09.534989 + +[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[109] Log closed at 2024-10-22 16:53:10.165474 + +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-10-22 16:53:10.507019 + +[109] Log opened at 2024-10-22 16:53:10.564159 +[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' +[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[109] Log closed at 2024-10-22 16:53:12.053798 + +[109] Log opened at 2024-10-22 16:53:12.094215 +[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' +[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] Log opened at 2024-10-22 16:53:12.160836 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[109] Log closed at 2024-10-22 16:53:13.225964 + +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] Log closed at 2024-10-22 16:53:16.726002 + +[94] Log opened at 2024-10-22 16:56:33.327361 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-22 16:56:35.056475 + +[94] Log opened at 2024-10-22 16:56:35.303194 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-22 16:56:35.968280 + +[93] Log opened at 2024-10-22 16:56:36.354510 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[105] Log opened at 2024-10-22 16:56:36.525804 +[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' +[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[110] Log opened at 2024-10-22 16:56:36.541302 +[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. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[105] Log closed at 2024-10-22 16:56:37.546488 + +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-10-22 16:56:38.114447 + +[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[110] Log closed at 2024-10-22 16:56:38.459736 + +[108] Log opened at 2024-10-22 16:56:38.515772 +[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' +[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[108] Log closed at 2024-10-22 16:56:40.083343 + +[93] Log opened at 2024-10-22 16:56:40.115176 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[108] Log opened at 2024-10-22 16:56:40.183859 +[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. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-10-22 16:56:41.168242 + +[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[108] Log closed at 2024-10-22 16:56:45.080474 + +[111] Log opened at 2024-10-22 16:58:34.798351 +[111] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.111' +[111] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[111] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[111] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[111] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[111] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[111] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[111] Log closed at 2024-10-22 16:58:36.565844 + +[111] Log opened at 2024-10-22 16:58:36.927964 +[111] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.111' +[111] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[111] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[111] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[111] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[111] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[111] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[111] Log closed at 2024-10-22 16:58:37.597481 + +[105] Log opened at 2024-10-22 16:58:37.945284 +[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' +[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] Log opened at 2024-10-22 16:58:38.132314 +[110] Log opened at 2024-10-22 16:58:38.132342 +[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-10-22 16:58:39.110021 + +[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[105] Log closed at 2024-10-22 16:58:39.705691 + +[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[110] Log closed at 2024-10-22 16:58:40.049430 + +[104] Log opened at 2024-10-22 16:58:40.100008 +[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' +[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[104] Log closed at 2024-10-22 16:58:41.672625 + +[105] Log opened at 2024-10-22 16:58:41.710077 +[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' +[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[104] Log opened at 2024-10-22 16:58:41.798977 +[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' +[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[105] Log closed at 2024-10-22 16:58:42.809751 + +[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[104] Log closed at 2024-10-22 16:58:46.459689 + +[95] Log opened at 2024-10-22 16:59:13.200447 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-22 16:59:14.907026 + +[95] Log opened at 2024-10-22 16:59:15.184521 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-22 16:59:15.849838 + +[94] Log opened at 2024-10-22 16:59:16.268049 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[110] Log opened at 2024-10-22 16:59:16.442128 +[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' +[93] Log opened at 2024-10-22 16:59:16.442128 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[110] Log closed at 2024-10-22 16:59:17.427220 + +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-22 16:59:18.033681 + +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-10-22 16:59:18.374236 + +[112] Log opened at 2024-10-22 16:59:18.429202 +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[112] Log closed at 2024-10-22 16:59:19.966939 + +[94] Log opened at 2024-10-22 16:59:20.007404 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[112] Log opened at 2024-10-22 16:59:20.085861 +[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. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-22 16:59:21.156146 + +[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-22 16:59:24.898214 + +[103] Log opened at 2024-10-22 16:59:50.796223 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] Log closed at 2024-10-22 16:59:52.603557 + +[103] Log opened at 2024-10-22 16:59:52.851656 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] Log closed at 2024-10-22 16:59:53.516452 + +[110] Log opened at 2024-10-22 16:59:54.314522 +[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. +[93] Log opened at 2024-10-22 16:59:54.505943 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[113] Log opened at 2024-10-22 16:59:54.506350 +[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. +[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). +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[113] Log closed at 2024-10-22 16:59:55.525485 + +[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[110] Log closed at 2024-10-22 16:59:56.142809 + +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-10-22 16:59:56.522365 + +[95] Log opened at 2024-10-22 16:59:56.626854 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-22 16:59:58.115269 + +[110] Log opened at 2024-10-22 16:59:58.166661 +[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. +[95] Log opened at 2024-10-22 16:59:58.244191 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[110] Log closed at 2024-10-22 16:59:59.276571 + +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-22 17:00:02.824321 + +[109] Log opened at 2024-10-22 17:06:03.129689 +[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' +[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[109] Log closed at 2024-10-22 17:06:04.867321 + +[109] Log opened at 2024-10-22 17:06:05.128756 +[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' +[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[109] Log closed at 2024-10-22 17:06:05.787139 + +[93] Log opened at 2024-10-22 17:06:06.217682 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[113] Log opened at 2024-10-22 17:06:06.345542 +[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. +[111] Log opened at 2024-10-22 17:06:06.345953 +[111] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.111' +[111] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[111] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[113] Log closed at 2024-10-22 17:06:07.367519 + +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[111] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-10-22 17:06:07.963488 + +[111] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[111] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[111] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[111] Log closed at 2024-10-22 17:06:08.294531 + +[114] Log opened at 2024-10-22 17:06:08.353712 +[114] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.114' +[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[114] Log closed at 2024-10-22 17:06:09.915810 + +[93] Log opened at 2024-10-22 17:06:09.951628 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[114] Log opened at 2024-10-22 17:06:10.021931 +[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. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-10-22 17:06:11.090536 + +[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[114] Log closed at 2024-10-22 17:06:14.661271 + +[112] Log opened at 2024-10-22 17:07:50.859149 +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[112] Log closed at 2024-10-22 17:07:52.605864 + +[112] Log opened at 2024-10-22 17:07:52.847009 +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[112] Log closed at 2024-10-22 17:07:53.510312 + +[109] Log opened at 2024-10-22 17:07:54.075280 +[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' +[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] Log opened at 2024-10-22 17:07:54.144355 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[113] Log opened at 2024-10-22 17:07:54.157073 +[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. +[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[103] Log closed at 2024-10-22 17:07:55.156550 + +[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[109] Log closed at 2024-10-22 17:07:55.821193 + +[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[113] Log closed at 2024-10-22 17:07:56.166917 + +[104] Log opened at 2024-10-22 17:07:56.226386 +[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' +[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[104] Log closed at 2024-10-22 17:07:57.758523 + +[109] Log opened at 2024-10-22 17:07:57.797826 +[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' +[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[104] Log opened at 2024-10-22 17:07:57.898499 +[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' +[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[109] Log closed at 2024-10-22 17:07:58.930512 + +[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[104] Log closed at 2024-10-22 17:08:02.625501 + +[114] Log opened at 2024-10-22 17:09:10.780599 +[114] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.114' +[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[114] Log closed at 2024-10-22 17:09:12.612436 + +[114] Log opened at 2024-10-22 17:09:12.926059 +[114] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.114' +[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[114] Log closed at 2024-10-22 17:09:13.588119 + +[112] Log opened at 2024-10-22 17:09:13.995295 +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[116] Log opened at 2024-10-22 17:09:14.077572 +[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. +[95] Log opened at 2024-10-22 17:09:14.096556 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[116] Log closed at 2024-10-22 17:09:15.068030 + +[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. +[95] [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-22 17:09:15.671985 + +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-22 17:09:16.065949 + +[115] Log opened at 2024-10-22 17:09:16.162000 +[115] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.115' +[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[115] Log closed at 2024-10-22 17:09:17.628235 + +[112] Log opened at 2024-10-22 17:09:17.692900 +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[112] Log closed at 2024-10-22 17:09:18.778355 + +[115] Log opened at 2024-10-22 17:09:21.097120 +[115] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.115' +[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[115] Log closed at 2024-10-22 17:09:25.623205 + +[104] Log opened at 2024-10-22 17:11:09.797129 +[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' +[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[104] Log closed at 2024-10-22 17:11:11.541723 + +[104] Log opened at 2024-10-22 17:11:11.770586 +[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' +[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[104] Log closed at 2024-10-22 17:11:12.434262 + +[116] Log opened at 2024-10-22 17:11:12.968955 +[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. +[93] Log opened at 2024-10-22 17:11:13.042781 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[114] Log opened at 2024-10-22 17:11:13.043955 +[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. +[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). +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-10-22 17:11:14.026502 + +[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. +[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[116] Log closed at 2024-10-22 17:11:14.624407 + +[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[114] Log closed at 2024-10-22 17:11:14.962025 + +[116] Log opened at 2024-10-22 17:11:15.006831 +[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] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[116] Log closed at 2024-10-22 17:11:16.529865 + +[116] Log opened at 2024-10-22 17:11:16.569215 +[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. +[93] Log opened at 2024-10-22 17:11:16.651819 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[116] Log closed at 2024-10-22 17:11:17.683878 + +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-10-22 17:11:21.324215 +