From 7223b56db670de12aae5a7e8f52a6949a9acc0da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Jim=C3=A9nez?= Date: Tue, 12 Nov 2024 01:08:53 +0100 Subject: [PATCH] menu lateral datos generales --- .../cliente/viewPresupuestoclienteForm.php | 75 +- .../presupuestoCliente/datosGenerales.js | 68 + .../presupuestoCliente/presupuestoCliente.js | 30 +- .../pages/presupuestoCliente/resumen.js | 4 +- .../themes/vuexy/css/presupuestoCliente.css | 4 + xdebug.log | 8390 +++++++++++++++++ 6 files changed, 8564 insertions(+), 7 deletions(-) diff --git a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/viewPresupuestoclienteForm.php b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/viewPresupuestoclienteForm.php index e66e65b2..28efc9df 100644 --- a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/viewPresupuestoclienteForm.php +++ b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/viewPresupuestoclienteForm.php @@ -29,7 +29,7 @@
-
class="step active titulos-menu" data-target="#datos-generales"> +
class="step active titulos-menu" data-target="#datos-generales">
-
class="step titulos-menu" data-target="#interior-libro"> +
class="step titulos-menu" data-target="#interior-libro">
-
class="step titulos-menu" data-target="#cubierta-libro"> +
class="step titulos-menu" data-target="#cubierta-libro">
-
class="step titulos-menu" data-target="#direcciones-libro"> +
class="step titulos-menu" data-target="#direcciones-libro">
diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js index 4a1dce2c..71610cf2 100644 --- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js +++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js @@ -56,6 +56,12 @@ class DatosGenerales { this.excluirRotativa = this.domItem.find("#excluirRotativa"); this.prototipo = this.domItem.find("#prototipo"); + this.rl_datos_generales = $(".rl-datos-generales"); + this.rl_tipo = $("#rl_tipo"); + this.rl_tamanio = $("#rl_tamanio"); + this.rl_tiradas = $("#rl_tiradas"); + this.rl_paginas = $("#rl_paginas"); + this.initValidation(); } @@ -373,10 +379,72 @@ class DatosGenerales { } }).on('core.form.valid', () => { if (this.allowNext) + stepper.next(); }); } + + processMenuLateral() { + + let menu_off = true; + this.rl_datos_generales.removeClass('d-none'); + + if (this.tiposLibro.filter('.selected').length > 0) { + let tipo = String(this.tiposLibro.filter('.selected').attr('id')); + tipo = tipo.charAt(0).toUpperCase() + tipo.slice(1); + this.rl_tipo.text(tipo); + this.rl_tipo.removeClass('d-none'); + menu_off = false; + } + else { + this.rl_tipo.addClass('d-none'); + } + if (this.checkFormatoPersonalizado.is(':checked')) { + let ancho = parseFloat(this.anchoPersonalizado.val()); + let alto = parseFloat(this.altoPersonalizado.val()); + if (!isNaN(ancho) && !isNaN(alto)) { + this.rl_tamanio.text(ancho + ' x ' + alto); + this.rl_tamanio.removeClass('d-none'); + menu_off = false; + } + else { + this.rl_tamanio.addClass('d-none'); + } + } + + else { + if (this.papelFormatoId.val() != null) { + this.rl_tamanio.text(this.papelFormatoId.find('option:selected').text()); + this.rl_tamanio.removeClass('d-none'); + menu_off = false; + } + else { + this.rl_tamanio.addClass('d-none'); + } + } + + const tiradas = this.getTiradas(); + if (tiradas.length > 0) { + this.rl_tiradas.text(tiradas.join(', ')); + this.rl_tiradas.removeClass('d-none'); + } + else + this.rl_tiradas.addClass('d-none'); + + if (this.paginas.val() > 0) { + this.rl_paginas.text(this.paginas.val() + " páginas"); + this.rl_paginas.removeClass('d-none'); + } + else + this.rl_paginas.addClass('d-none'); + + if (!menu_off) + this.rl_datos_generales.removeClass('d-none'); + + } + + cargarDatos(datos) { this.titulo.val(datos.titulo); diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js index 6588b183..8215fbd4 100644 --- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js +++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js @@ -27,6 +27,10 @@ class PresupuestoCliente { this.lc = $("#lc"); this.lsc = $("#lsc"); + this.rl_interior = $(".rl-interior"); + this.rl_cubierta = $(".rl-cubierta"); + this.rl_sobrecubierta = $(".rl-sobrecubierta"); + this.datosGenerales = new DatosGenerales($("#datos-generales"), this.clientePresupuestoWizard, this.validationStepper); this.disenioInterior = new DisenioInterior($("#interior-libro"), this.clientePresupuestoWizard, this.validationStepper); this.disenioCubierta = new DisenioCubierta($("#cubierta-libro"), this.clientePresupuestoWizard, this.validationStepper); @@ -45,6 +49,10 @@ class PresupuestoCliente { this.actualizarTiradasEnvio = false; this.calcularPresupuesto = false; + + if(!window.location.href.includes("edit")) { + this.#processResumenLateral(); + } } @@ -84,7 +92,10 @@ class PresupuestoCliente { if (window.location.href.includes("edit")) { - this.#cargarPresupuesto(); + setTimeout(() => { + this.#cargarPresupuesto(); + }, 0); + const successMessage = sessionStorage.getItem('message'); if (successMessage) { popSuccessAlert(successMessage); @@ -99,6 +110,14 @@ class PresupuestoCliente { } + #processResumenLateral() { + + this.datosGenerales.processMenuLateral(); + + + } + + #checkTiradas() { let tiradas = [parseInt(this.datosGenerales.tirada1.val())]; @@ -135,6 +154,8 @@ class PresupuestoCliente { checkForm(event) { + this.#processResumenLateral(); + if (!this.#checkTiradas()) { return; } @@ -192,12 +213,17 @@ class PresupuestoCliente { return; } + if (nextElement === 'resumen-libro') { + $(".rl-item").addClass('d-none'); + } + if (currentElement !== 'resumen-libro') { this.#validateCurrentForm(currentElement, nextElement); } else { this.#goToForm(nextElement); } + this.#processResumenLateral(); } #goToForm(form) { @@ -682,6 +708,8 @@ class PresupuestoCliente { } + + async function validateForm(formValidation) { try { const validationResult = await formValidation.validate(); diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/resumen.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/resumen.js index 7154d427..2b7c7def 100644 --- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/resumen.js +++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/resumen.js @@ -201,7 +201,7 @@ class Resumen { generate() { this.titulo.text(this.datosGenerales.titulo.val()); - this.tipoLibro.text(this.#capitalizeFirstLetter(this.datosGenerales.tiposLibro.filter('.selected').attr('id'))); + this.tipoLibro.text(this.capitalizeFirstLetter(this.datosGenerales.tiposLibro.filter('.selected').attr('id'))); let ancho = 0, alto = 0; if (this.datosGenerales.checkFormatoPersonalizado.is(':checked')) { @@ -346,7 +346,7 @@ class Resumen { } - #capitalizeFirstLetter(string) { + capitalizeFirstLetter(string) { return string.charAt(0).toUpperCase() + string.slice(1); } diff --git a/httpdocs/themes/vuexy/css/presupuestoCliente.css b/httpdocs/themes/vuexy/css/presupuestoCliente.css index 1ad2532f..a792fec8 100644 --- a/httpdocs/themes/vuexy/css/presupuestoCliente.css +++ b/httpdocs/themes/vuexy/css/presupuestoCliente.css @@ -472,4 +472,8 @@ background-color: var(--white); transform: translate3d(0, 0, 1px) rotateY(0); } +} + +.texto-resumen-lateral{ + font-size: 0.9em; } \ No newline at end of file diff --git a/xdebug.log b/xdebug.log index d6811855..acae01b1 100644 --- a/xdebug.log +++ b/xdebug.log @@ -11675,3 +11675,8393 @@ [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-11-09 11:14:29.119007 +[22] Log opened at 2024-11-09 12:05:48.297568 +[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-11-09 12:05:49.557653 + +[22] Log opened at 2024-11-09 12:05:49.623370 +[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-11-09 12:05:50.277906 + +[25] Log opened at 2024-11-09 12:05:50.361602 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-11-09 12:05:50.381343 +[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. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-09 12:05:51.404703 + +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-09 12:05:52.089550 + +[27] Log opened at 2024-11-09 12:06:09.968811 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-09 12:06:11.181352 + +[27] Log opened at 2024-11-09 12:06:11.245534 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-09 12:06:11.886881 + +[23] Log opened at 2024-11-09 12:06:12.015172 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-11-09 12:06:12.018001 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] Log opened at 2024-11-09 12:06:12.115097 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-09 12:06:12.961643 + +[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-11-09 12:06:13.567495 + +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-09 12:06:14.000162 + +[24] Log opened at 2024-11-09 12:06:16.709298 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-09 12:06:18.425289 + +[24] Log opened at 2024-11-09 12:06:18.523601 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-09 12:06:19.166451 + +[29] Log opened at 2024-11-09 12:06:19.385206 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] Log opened at 2024-11-09 12:06:19.391933 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-11-09 12:06:19.413756 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] Log opened at 2024-11-09 12:06:19.463751 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-11-09 12:06:19.469109 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-09 12:06:20.357436 + +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-09 12:06:20.666971 + +[28] Log opened at 2024-11-09 12:06:20.727617 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-09 12:06:21.395269 + +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-11-09 12:06:21.975012 + +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-11-09 12:06:21.984542 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] Log opened at 2024-11-09 12:06:21.984541 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] Log opened at 2024-11-09 12:06:21.984542 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-11-09 12:06:22.382486 + +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-09 12:06:23.082930 + +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] Log opened at 2024-11-09 12:06:23.266570 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-11-09 12:06:23.442654 + +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-09 12:06:23.817697 + +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-09 12:06:24.224291 + +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-09 12:06:27.097797 + +[23] Log opened at 2024-11-09 12:06:41.693760 +[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-11-09 12:06:42.958320 + +[23] Log opened at 2024-11-09 12:06:43.020449 +[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-11-09 12:06:43.663253 + +[31] Log opened at 2024-11-09 12:06:43.825222 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-11-09 12:06:43.841880 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] Log opened at 2024-11-09 12:06:43.963747 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-09 12:06:44.779271 + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-09 12:06:45.458890 + +[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-11-09 12:06:45.887164 + +[32] Log opened at 2024-11-09 12:06:48.986701 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-09 12:06:53.074504 + +[32] Log opened at 2024-11-09 12:06:53.159980 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-11-09 12:06:53.164384 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-11-09 12:06:53.164384 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] Log opened at 2024-11-09 12:06:53.166775 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[25] Log opened at 2024-11-09 12:06:53.166708 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] Log opened at 2024-11-09 12:06:53.166708 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-09 12:06:53.823606 + +[32] Log opened at 2024-11-09 12:06:53.825989 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-09 12:06:54.253685 + +[25] Log opened at 2024-11-09 12:06:54.255781 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-09 12:06:54.596057 + +[29] Log opened at 2024-11-09 12:06:54.598848 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-11-09 12:06:54.935791 + +[30] Log opened at 2024-11-09 12:06:54.938246 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-09 12:06:55.401927 + +[24] Log opened at 2024-11-09 12:06:55.404264 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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-11-09 12:06:55.743884 + +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-09 12:06:56.067060 + +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-09 12:06:56.393610 + +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-09 12:06:56.735789 + +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-11-09 12:06:57.082913 + +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-09 12:06:57.476243 + +[32] Log opened at 2024-11-09 12:06:57.625434 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-11-09 12:06:57.637860 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] Log opened at 2024-11-09 12:06:57.708375 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-11-09 12:06:57.725585 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-11-09 12:06:57.732292 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log opened at 2024-11-09 12:06:57.992809 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-09 12:06:58.998909 + +[22] Log opened at 2024-11-09 12:06:59.001322 +[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). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-09 12:06:59.625112 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-09 12:07:00.910801 + +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-09 12:07:01.497840 + +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-09 12:07:01.894055 + +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-11-09 12:07:02.420862 + +[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-11-09 12:07:02.802042 + +[22] Log opened at 2024-11-11 19:24:39.296461 +[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-11-11 19:24:40.334484 + +[22] Log opened at 2024-11-11 19:24:40.345890 +[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-11-11 19:24:41.331831 + +[25] Log opened at 2024-11-11 19:24:41.445318 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-11 19:24:42.099783 + +[23] Log opened at 2024-11-11 19:24:42.233248 +[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-11-11 19:24:43.149088 + +[28] Log opened at 2024-11-11 19:24:50.333525 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-11 19:24:51.721988 + +[28] Log opened at 2024-11-11 19:24:51.736751 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-11 19:24:52.832525 + +[28] Log opened at 2024-11-11 19:24:52.887822 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-11 19:24:53.535127 + +[24] Log opened at 2024-11-11 19:24:54.973331 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-11-11 19:24:54.985660 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:24:55.886173 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-11 19:24:56.569722 + +[27] Log opened at 2024-11-11 19:25:22.883909 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:25:24.171635 + +[27] Log opened at 2024-11-11 19:25:24.259623 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:25:24.907051 + +[30] Log opened at 2024-11-11 19:25:25.027778 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] Log opened at 2024-11-11 19:25:25.029039 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-11 19:25:25.131820 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-11 19:25:26.025595 + +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-11-11 19:25:26.685061 + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:25:27.103427 + +[30] Log opened at 2024-11-11 19:25:28.335335 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-11-11 19:25:30.067857 + +[30] Log opened at 2024-11-11 19:25:30.153253 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-11-11 19:25:30.798841 + +[30] Log opened at 2024-11-11 19:25:30.984350 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] Log opened at 2024-11-11 19:25:30.986997 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-11 19:25:31.008744 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-11-11 19:25:31.056122 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-11-11 19:25:31.061536 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-11 19:25:31.953514 + +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:25:32.281547 + +[29] Log opened at 2024-11-11 19:25:32.313938 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-11-11 19:25:32.929484 + +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:25:33.318445 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-11 19:25:33.852345 + +[30] Log opened at 2024-11-11 19:25:33.866811 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-11 19:25:33.868014 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-11-11 19:25:33.868014 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-11 19:25:34.728694 + +[29] Log opened at 2024-11-11 19:25:34.770227 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-11-11 19:25:34.815056 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-11 19:25:35.095342 + +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:25:35.468425 + +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-11-11 19:25:35.866038 + +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-11 19:25:36.321687 + +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:25:41.093449 + +[27] Log opened at 2024-11-11 19:26:28.658753 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:26:30.338076 + +[27] Log opened at 2024-11-11 19:26:30.424220 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:26:31.067019 + +[32] Log opened at 2024-11-11 19:26:31.285546 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-11-11 19:26:31.289794 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] Log opened at 2024-11-11 19:26:31.312047 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-11 19:26:31.370446 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-11-11 19:26:31.378190 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 19:26:32.310668 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:26:32.994225 + +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-11 19:26:33.383826 + +[32] Log opened at 2024-11-11 19:26:33.414289 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:26:33.973363 + +[22] Log opened at 2024-11-11 19:26:33.984974 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[28] Log opened at 2024-11-11 19:26:33.984975 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-11 19:26:33.984975 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-11 19:26:34.351599 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:26:35.160230 + +[32] Log opened at 2024-11-11 19:26:35.189311 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-11-11 19:26:35.232470 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [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-11-11 19:26:35.505078 + +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:26:35.870581 + +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-11 19:26:36.243443 + +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:26:36.630610 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-11 19:26:41.253143 + +[29] Log opened at 2024-11-11 19:28:25.106580 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-11 19:28:26.820921 + +[29] Log opened at 2024-11-11 19:28:26.885877 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-11 19:28:27.528125 + +[26] Log opened at 2024-11-11 19:28:27.712318 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-11-11 19:28:27.719352 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] Log opened at 2024-11-11 19:28:27.743618 +[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. +[29] Log opened at 2024-11-11 19:28:27.800935 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-11 19:28:27.814032 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-11 19:28:28.721920 + +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:28:29.350660 + +[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-11-11 19:28:29.682083 + +[25] Log opened at 2024-11-11 19:28:29.714045 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-11 19:28:30.206583 + +[33] Log opened at 2024-11-11 19:28:30.218038 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[26] Log opened at 2024-11-11 19:28:30.217600 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] Log opened at 2024-11-11 19:28:30.218037 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:28:30.683055 + +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-11 19:28:31.481612 + +[25] Log opened at 2024-11-11 19:28:31.517732 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-11 19:28:31.571919 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-11 19:28:31.865168 + +[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. +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-11-11 19:28:32.227541 + +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:28:32.612000 + +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-11 19:28:33.020445 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:28:37.178057 + +[22] Log opened at 2024-11-11 19:28:56.302685 +[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-11-11 19:28:57.970950 + +[22] Log opened at 2024-11-11 19:28:58.041130 +[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-11-11 19:28:58.691330 + +[31] Log opened at 2024-11-11 19:28:58.888935 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] Log opened at 2024-11-11 19:28:58.896749 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-11-11 19:28:58.924374 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-11-11 19:28:58.990669 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] Log opened at 2024-11-11 19:28:59.000562 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-11 19:28:59.953605 + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:29:00.621589 + +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:29:00.956411 + +[28] Log opened at 2024-11-11 19:29:00.993215 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-11 19:29:01.480220 + +[32] Log opened at 2024-11-11 19:29:01.493077 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[31] Log opened at 2024-11-11 19:29:01.493067 +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[24] Log opened at 2024-11-11 19:29:01.493068 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-11 19:29:01.875000 + +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-11 19:29:02.644092 + +[28] Log opened at 2024-11-11 19:29:02.684811 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] Log opened at 2024-11-11 19:29:02.743424 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:29:03.019709 + +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-11 19:29:03.372661 + +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:29:03.736891 + +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-11 19:29:04.126184 + +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-11 19:29:08.429942 + +[26] Log opened at 2024-11-11 19:29:20.303402 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:29:22.007238 + +[26] Log opened at 2024-11-11 19:29:22.067520 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:29:22.716255 + +[25] Log opened at 2024-11-11 19:29:22.855409 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-11 19:29:22.862497 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-11-11 19:29:22.882245 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] Log opened at 2024-11-11 19:29:22.934381 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-11-11 19:29:22.939732 +[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. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:29:23.843810 + +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-11 19:29:24.467004 + +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:29:24.819024 + +[27] Log opened at 2024-11-11 19:29:24.856820 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:29:25.318716 + +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-11-11 19:29:25.330538 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[34] Log opened at 2024-11-11 19:29:25.330561 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-11-11 19:29:25.330319 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] 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. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-11-11 19:29:25.722271 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:29:26.493383 + +[27] Log opened at 2024-11-11 19:29:26.533699 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-11-11 19:29:26.595533 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:29:26.890313 + +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-11 19:29:27.241172 + +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:29:27.620916 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:29:28.019811 + +[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-11-11 19:29:32.311994 + +[27] Log opened at 2024-11-11 19:29:32.805650 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:29:34.554223 + +[27] Log opened at 2024-11-11 19:29:34.605309 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:29:35.250763 + +[27] Log opened at 2024-11-11 19:29:35.383899 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-11-11 19:29:35.391554 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-11 19:29:35.411592 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-11-11 19:29:35.453378 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-11-11 19:29:35.463673 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 19:29:36.360165 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:29:36.972758 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-11 19:29:37.450255 + +[22] Log opened at 2024-11-11 19:29:37.460123 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[27] Log opened at 2024-11-11 19:29:37.459614 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-11-11 19:29:37.460316 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [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). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:29:37.814226 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-11 19:29:37.844238 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:29:38.217273 + +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-11 19:29:38.587227 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:29:38.962799 + +[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-11-11 19:29:39.355496 + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:29:40.060745 + +[27] Log opened at 2024-11-11 19:29:40.092279 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-11-11 19:29:40.135414 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step 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). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:29:41.164345 + +[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-11-11 19:29:46.305159 + +[28] Log opened at 2024-11-11 19:29:51.855876 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-11 19:29:53.567291 + +[28] Log opened at 2024-11-11 19:29:53.632767 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-11 19:29:54.276246 + +[29] Log opened at 2024-11-11 19:29:54.421687 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-11-11 19:29:54.429888 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-11-11 19:29:54.449879 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] Log opened at 2024-11-11 19:29:54.497417 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] Log opened at 2024-11-11 19:29:54.507982 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:29:55.414999 + +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-11 19:29:56.060179 + +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-11 19:29:56.403262 + +[26] Log opened at 2024-11-11 19:29:56.430756 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:29:56.897113 + +[25] Log opened at 2024-11-11 19:29:56.908633 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[34] Log opened at 2024-11-11 19:29:56.908552 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] Log opened at 2024-11-11 19:29:56.908498 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-11 19:29:57.289541 + +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:29:58.031516 + +[26] Log opened at 2024-11-11 19:29:58.064407 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] Log opened at 2024-11-11 19:29:58.108217 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:29:58.395026 + +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-11 19:29:58.799471 + +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-11 19:29:59.164107 + +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:29:59.581772 + +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-11 19:30:04.300037 + +[22] Log opened at 2024-11-11 19:31:55.982326 +[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-11-11 19:31:57.701418 + +[22] Log opened at 2024-11-11 19:31:57.816382 +[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-11-11 19:31:58.466979 + +[22] Log opened at 2024-11-11 19:31:59.270821 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] Log opened at 2024-11-11 19:31:59.284278 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-11-11 19:31:59.345091 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log opened at 2024-11-11 19:32:00.295862 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] Log closed at 2024-11-11 19:32:00.302345 + +[29] Log opened at 2024-11-11 19:32:00.308541 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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. +[25] [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-11-11 19:32:00.980687 + +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-11 19:32:01.314935 + +[22] Log opened at 2024-11-11 19:32:01.374767 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: 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). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:32:01.808398 + +[25] Log opened at 2024-11-11 19:32:01.824356 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-11-11 19:32:01.824358 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-11-11 19:32:01.826021 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-11 19:32:02.351422 + +[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-11-11 19:32:03.108104 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] Log opened at 2024-11-11 19:32:03.144967 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-11-11 19:32:03.188791 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-11 19:32:03.524574 + +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:32:03.912515 + +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-11 19:32:04.287480 + +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-11 19:32:04.732874 + +[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-11-11 19:32:09.248917 + +[28] Log opened at 2024-11-11 19:35:51.077881 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-11 19:35:52.742122 + +[28] Log opened at 2024-11-11 19:35:52.877424 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-11 19:35:53.528461 + +[32] Log opened at 2024-11-11 19:35:54.033415 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-11 19:35:54.047348 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] Log opened at 2024-11-11 19:35:54.058524 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-11-11 19:35:54.100353 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[26] Log opened at 2024-11-11 19:35:54.100353 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:35:55.140446 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:35:55.779440 + +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:35:56.126498 + +[27] Log opened at 2024-11-11 19:35:56.162375 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-11 19:35:56.504136 + +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:35:57.000131 + +[34] Log opened at 2024-11-11 19:35:57.012847 +[32] Log opened at 2024-11-11 19:35:57.012691 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-11-11 19:35:57.012691 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:35:57.840792 + +[27] Log opened at 2024-11-11 19:35:57.880025 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-11-11 19:35:57.938088 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:35:58.201792 + +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:35:58.564970 + +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:35:58.933605 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:35:59.323889 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-11 19:36:03.759058 + +[29] Log opened at 2024-11-11 19:37:48.662586 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-11 19:37:50.312801 + +[29] Log opened at 2024-11-11 19:37:50.368235 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-11 19:37:51.016943 + +[31] Log opened at 2024-11-11 19:37:51.185781 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] Log opened at 2024-11-11 19:37:51.194163 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] Log opened at 2024-11-11 19:37:51.213051 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-11-11 19:37:51.271209 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] Log opened at 2024-11-11 19:37:51.275120 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-11-11 19:37:52.157796 + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:37:52.819367 + +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-11 19:37:53.155303 + +[35] Log opened at 2024-11-11 19:37:53.186424 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-11 19:37:53.536368 + +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:37:54.020802 + +[28] Log opened at 2024-11-11 19:37:54.031927 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[31] Log opened at 2024-11-11 19:37:54.031805 +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-11-11 19:37:54.031826 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-11-11 19:37:54.737308 + +[35] Log opened at 2024-11-11 19:37:54.775414 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] Log opened at 2024-11-11 19:37:54.826344 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:37:55.119449 + +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:37:55.477614 + +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-11 19:37:55.850091 + +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-11-11 19:37:56.237676 + +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-11 19:38:00.805806 + +[32] Log opened at 2024-11-11 19:38:19.123923 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:38:20.878358 + +[32] Log opened at 2024-11-11 19:38:20.961249 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:38:21.606937 + +[34] Log opened at 2024-11-11 19:38:21.753781 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-11 19:38:21.759832 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-11-11 19:38:21.780964 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-11-11 19:38:21.832093 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-11-11 19:38:21.838578 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:38:22.747535 + +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:38:23.062731 + +[27] Log opened at 2024-11-11 19:38:23.090400 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:38:23.727198 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-11 19:38:24.202085 + +[34] Log opened at 2024-11-11 19:38:24.211963 +[32] Log opened at 2024-11-11 19:38:24.212449 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-11-11 19:38:24.212312 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 19:38:24.576138 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:38:25.356684 + +[27] Log opened at 2024-11-11 19:38:25.391040 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-11-11 19:38:25.430731 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:38:25.725975 + +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-11 19:38:26.096056 + +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:38:26.464450 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:38:26.857921 + +[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-11-11 19:38:31.293574 + +[29] Log opened at 2024-11-11 19:39:49.985194 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-11 19:39:51.670979 + +[29] Log opened at 2024-11-11 19:39:51.781210 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-11 19:39:52.430231 + +[32] Log opened at 2024-11-11 19:39:52.624160 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-11-11 19:39:52.634040 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] Log opened at 2024-11-11 19:39:52.657104 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] Log opened at 2024-11-11 19:39:52.723480 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-11-11 19:39:52.732106 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-11 19:39:53.668727 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:39:54.286775 + +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-11 19:39:54.610503 + +[24] Log opened at 2024-11-11 19:39:54.652672 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:39:55.150260 + +[32] Log opened at 2024-11-11 19:39:55.166051 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] Log opened at 2024-11-11 19:39:55.166466 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] Log opened at 2024-11-11 19:39:55.166793 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:39:55.532353 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-11 19:39:56.304151 + +[24] Log opened at 2024-11-11 19:39:56.338569 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-11-11 19:39:56.386432 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:39:56.656406 + +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:39:57.028301 + +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-11 19:39:57.392397 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-11 19:39:57.815206 + +[24] Log opened at 2024-11-11 19:40:00.454152 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:40:02.159429 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-11 19:40:03.174299 + +[24] Log opened at 2024-11-11 19:40:03.283999 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-11 19:40:03.927910 + +[24] Log opened at 2024-11-11 19:40:04.108911 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-11 19:40:04.118830 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] Log opened at 2024-11-11 19:40:04.136418 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] Log opened at 2024-11-11 19:40:04.202192 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-11 19:40:04.208770 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:40:05.213635 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-11 19:40:05.848121 + +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-11-11 19:40:06.196284 + +[24] Log opened at 2024-11-11 19:40:06.231846 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-11 19:40:06.684752 + +[27] Log opened at 2024-11-11 19:40:06.700977 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] Log opened at 2024-11-11 19:40:06.701940 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] Log opened at 2024-11-11 19:40:06.701929 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:40:07.121035 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-11 19:40:07.861501 + +[24] Log opened at 2024-11-11 19:40:07.891096 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-11 19:40:07.941919 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-11-11 19:40:08.235161 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:40:08.607160 + +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-11 19:40:09.007451 + +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-11 19:40:09.399569 + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:40:13.795218 + +[32] Log opened at 2024-11-11 19:40:23.053678 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:40:24.780857 + +[34] Log opened at 2024-11-11 19:40:24.861521 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:40:25.503795 + +[34] Log opened at 2024-11-11 19:40:25.758490 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-11-11 19:40:25.759174 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-11-11 19:40:25.779734 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] Log opened at 2024-11-11 19:40:25.862505 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-11-11 19:40:25.874643 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:40:26.726499 + +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:40:27.343468 + +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:40:27.671874 + +[34] Log opened at 2024-11-11 19:40:27.703540 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-11 19:40:28.150466 + +[29] Log opened at 2024-11-11 19:40:28.162739 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-11-11 19:40:28.163496 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-11-11 19:40:28.164707 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 19:40:28.570467 + +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:40:29.338165 + +[34] Log opened at 2024-11-11 19:40:29.367156 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-11-11 19:40:29.410996 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:40:29.701586 + +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:40:30.072593 + +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-11-11 19:40:30.433938 + +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:40:30.814755 + +[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-11-11 19:40:35.324038 + +[27] Log opened at 2024-11-11 19:40:47.879576 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:40:49.816770 + +[27] Log opened at 2024-11-11 19:40:49.933642 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:40:50.597472 + +[26] Log opened at 2024-11-11 19:40:50.906577 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-11 19:40:50.921959 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] Log opened at 2024-11-11 19:40:50.936164 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-11-11 19:40:51.032930 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-11-11 19:40:51.041978 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:40:51.928961 + +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:40:52.559403 + +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-11 19:40:52.902614 + +[26] Log opened at 2024-11-11 19:40:52.934440 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:40:53.349847 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-11 19:40:53.867913 + +[31] Log opened at 2024-11-11 19:40:53.879376 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] Log opened at 2024-11-11 19:40:53.879477 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-11-11 19:40:53.881162 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:40:54.739162 + +[26] Log opened at 2024-11-11 19:40:54.769940 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-11-11 19:40:54.815054 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-11 19:40:55.122239 + +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:40:55.479988 + +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-11 19:40:55.845743 + +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:40:56.222243 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:41:00.617851 + +[22] Log opened at 2024-11-11 19:41:36.408866 +[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-11-11 19:41:38.090481 + +[22] Log opened at 2024-11-11 19:41:38.241324 +[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-11-11 19:41:38.907395 + +[35] Log opened at 2024-11-11 19:41:39.259862 +[28] Log opened at 2024-11-11 19:41:39.259862 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-11 19:41:39.275588 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-11 19:41:39.397351 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] Log opened at 2024-11-11 19:41:39.405682 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-11-11 19:41:40.263816 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:41:40.585687 + +[35] Log opened at 2024-11-11 19:41:40.619099 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-11 19:41:41.225163 + +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-11 19:41:41.610122 + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:41:42.124005 + +[27] Log opened at 2024-11-11 19:41:42.135437 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] Log opened at 2024-11-11 19:41:42.135474 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-11 19:41:42.136681 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-11-11 19:41:43.003328 + +[35] Log opened at 2024-11-11 19:41:43.035497 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] Log opened at 2024-11-11 19:41:43.088656 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:41:43.359839 + +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:41:43.724803 + +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-11 19:41:44.093223 + +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-11-11 19:41:44.494327 + +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-11 19:41:48.680689 + +[24] Log opened at 2024-11-11 19:41:49.204771 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-11 19:41:50.888820 + +[24] Log opened at 2024-11-11 19:41:51.005797 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-11 19:41:51.686535 + +[32] Log opened at 2024-11-11 19:41:52.097992 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-11-11 19:41:52.111039 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] Log opened at 2024-11-11 19:41:52.136724 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] Log opened at 2024-11-11 19:41:52.189122 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-11-11 19:41:52.193970 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 19:41:53.099133 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:41:53.760165 + +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:41:54.089975 + +[32] Log opened at 2024-11-11 19:41:54.121540 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:41:54.457620 + +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-11-11 19:41:54.993544 + +[22] Log opened at 2024-11-11 19:41:55.006599 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[34] Log opened at 2024-11-11 19:41:55.006727 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] Log opened at 2024-11-11 19:41:55.006751 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:41:55.758823 + +[32] Log opened at 2024-11-11 19:41:55.788825 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-11-11 19:41:55.828500 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-11-11 19:41:56.128563 + +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:41:56.482784 + +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-11-11 19:41:56.864718 + +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:41:57.241077 + +[27] Log opened at 2024-11-11 19:41:59.093869 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:42:01.628523 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:42:02.642146 + +[27] Log opened at 2024-11-11 19:42:02.792470 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:42:03.459266 + +[31] Log opened at 2024-11-11 19:42:03.802232 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[36] Log opened at 2024-11-11 19:42:03.802355 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-11-11 19:42:03.879601 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log opened at 2024-11-11 19:42:04.038916 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] Log opened at 2024-11-11 19:42:04.039477 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-11 19:42:04.819997 + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:42:05.456726 + +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-11 19:42:05.791718 + +[31] Log opened at 2024-11-11 19:42:05.824009 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-11 19:42:06.156808 + +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-11-11 19:42:06.658640 + +[24] Log opened at 2024-11-11 19:42:06.672485 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[36] Log opened at 2024-11-11 19:42:06.672491 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] Log opened at 2024-11-11 19:42:06.672491 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:42:07.393853 + +[31] Log opened at 2024-11-11 19:42:07.426695 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] Log opened at 2024-11-11 19:42:07.471643 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-11 19:42:07.768553 + +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-11-11 19:42:08.127990 + +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-11 19:42:08.485467 + +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:42:08.879632 + +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-11 19:42:13.293531 + +[32] Log opened at 2024-11-11 19:42:22.680450 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:42:24.368174 + +[32] Log opened at 2024-11-11 19:42:24.497968 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:42:25.163298 + +[35] Log opened at 2024-11-11 19:42:25.529141 +[36] Log opened at 2024-11-11 19:42:25.529141 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] Log opened at 2024-11-11 19:42:25.531435 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-11 19:42:25.690354 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-11-11 19:42:25.701627 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-11 19:42:26.535410 + +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:42:26.845379 + +[36] Log opened at 2024-11-11 19:42:26.875422 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-11-11 19:42:27.493568 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:42:28.017037 + +[34] Log opened at 2024-11-11 19:42:28.030570 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] Log opened at 2024-11-11 19:42:28.030570 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[27] Log opened at 2024-11-11 19:42:28.030570 +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:42:28.405986 + +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-11 19:42:29.156577 + +[36] Log opened at 2024-11-11 19:42:29.191428 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-11-11 19:42:29.245412 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:42:29.522257 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:42:29.915679 + +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-11-11 19:42:30.266861 + +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-11 19:42:30.640142 + +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:42:34.909306 + +[28] Log opened at 2024-11-11 19:43:23.883450 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-11 19:43:25.574711 + +[28] Log opened at 2024-11-11 19:43:25.738199 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-11 19:43:26.399538 + +[38] Log opened at 2024-11-11 19:43:26.834039 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] Log opened at 2024-11-11 19:43:26.842357 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-11-11 19:43:26.873103 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] Log opened at 2024-11-11 19:43:26.937782 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-11 19:43:26.944457 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:43:27.868608 + +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-11-11 19:43:28.482185 + +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:43:28.807599 + +[38] Log opened at 2024-11-11 19:43:28.844167 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-11-11 19:43:29.296760 + +[34] Log opened at 2024-11-11 19:43:29.310029 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-11-11 19:43:29.311278 +[37] Log opened at 2024-11-11 19:43:29.311105 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:43:29.673342 + +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-11-11 19:43:30.411205 + +[38] Log opened at 2024-11-11 19:43:30.445626 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-11 19:43:30.492840 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:43:30.772135 + +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:43:31.123951 + +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-11-11 19:43:31.512014 + +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-11-11 19:43:31.917307 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:43:35.846146 + +[26] Log opened at 2024-11-11 19:45:32.213136 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:45:33.920061 + +[26] Log opened at 2024-11-11 19:45:34.058847 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:45:34.720381 + +[39] Log opened at 2024-11-11 19:45:35.051793 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] Log opened at 2024-11-11 19:45:35.119032 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] Log opened at 2024-11-11 19:45:35.122285 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log opened at 2024-11-11 19:45:35.258929 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-11 19:45:35.266239 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:45:36.132270 + +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-11-11 19:45:36.774517 + +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-11 19:45:37.117550 + +[39] Log opened at 2024-11-11 19:45:37.159078 +[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. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:45:37.490709 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:45:37.995933 + +[28] Log opened at 2024-11-11 19:45:38.011077 +[34] Log opened at 2024-11-11 19:45:38.011036 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-11-11 19:45:38.011396 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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. +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-11-11 19:45:38.713286 + +[39] Log opened at 2024-11-11 19:45:38.768877 +[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. +[31] Log opened at 2024-11-11 19:45:38.834868 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:45:39.110110 + +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-11-11 19:45:39.477732 + +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] Log closed at 2024-11-11 19:45:39.833413 + +[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-11-11 19:45:40.235369 + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:45:44.291799 + +[38] Log opened at 2024-11-11 19:46:17.798100 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-11-11 19:46:19.483358 + +[38] Log opened at 2024-11-11 19:46:19.583254 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-11-11 19:46:20.229220 + +[27] Log opened at 2024-11-11 19:46:20.429552 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] Log opened at 2024-11-11 19:46:20.441825 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] Log opened at 2024-11-11 19:46:20.465888 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-11-11 19:46:20.525798 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-11-11 19:46:20.533345 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-11 19:46:21.514439 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:46:22.181525 + +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-11 19:46:22.528833 + +[36] Log opened at 2024-11-11 19:46:22.564496 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:46:22.900580 + +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:46:23.422436 + +[27] Log opened at 2024-11-11 19:46:23.437588 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-11-11 19:46:23.438197 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] Log opened at 2024-11-11 19:46:23.439441 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-11 19:46:24.171786 + +[36] Log opened at 2024-11-11 19:46:24.204795 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-11-11 19:46:24.256778 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:46:24.523906 + +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-11 19:46:24.887132 + +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-11 19:46:25.257176 + +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-11 19:46:25.662759 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:46:29.982498 + +[39] Log opened at 2024-11-11 19:48:35.319685 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-11-11 19:48:37.028997 + +[39] Log opened at 2024-11-11 19:48:37.159182 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-11-11 19:48:37.821175 + +[31] Log opened at 2024-11-11 19:48:38.231331 +[40] Log opened at 2024-11-11 19:48:38.231331 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-11 19:48:38.234352 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-11-11 19:48:38.387079 +[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. +[38] Log opened at 2024-11-11 19:48:38.394087 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-11 19:48:39.278427 + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:48:39.920555 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:48:40.265922 + +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-11 19:48:40.308512 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-11-11 19:48:40.688418 + +[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-11-11 19:48:41.194700 + +[40] Log opened at 2024-11-11 19:48:41.209081 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-11 19:48:41.209633 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-11-11 19:48:41.209973 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:48:41.994418 + +[31] Log opened at 2024-11-11 19:48:42.025347 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] Log opened at 2024-11-11 19:48:42.071636 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-11 19:48:42.349446 + +[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-11-11 19:48:42.727489 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:48:43.144473 + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:48:43.560370 + +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-11-11 19:48:47.647258 + +[36] Log opened at 2024-11-11 19:50:25.777962 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-11 19:50:27.490467 + +[32] Log opened at 2024-11-11 19:50:27.609259 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:50:28.252404 + +[32] Log opened at 2024-11-11 19:50:28.541049 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] Log opened at 2024-11-11 19:50:28.594221 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] Log opened at 2024-11-11 19:50:28.596566 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] Log opened at 2024-11-11 19:50:28.711947 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] Log opened at 2024-11-11 19:50:28.720011 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:50:29.570005 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:50:30.150816 + +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-11 19:50:30.485146 + +[34] Log opened at 2024-11-11 19:50:30.534725 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-11 19:50:31.022795 + +[42] Log opened at 2024-11-11 19:50:31.036232 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-11-11 19:50:31.036173 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] Log opened at 2024-11-11 19:50:31.036763 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 19:50:31.413104 + +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:50:32.209372 + +[34] Log opened at 2024-11-11 19:50:32.241297 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] Log opened at 2024-11-11 19:50:32.283451 +[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. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-11 19:50:32.568960 + +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-11 19:50:32.948786 + +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:50:33.293651 + +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:50:33.694608 + +[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-11-11 19:50:38.005450 + +[40] Log opened at 2024-11-11 19:51:23.387011 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-11 19:51:25.054400 + +[40] Log opened at 2024-11-11 19:51:25.148164 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-11 19:51:25.793670 + +[41] Log opened at 2024-11-11 19:51:25.979053 +[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. +[27] Log opened at 2024-11-11 19:51:25.988874 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-11 19:51:26.012853 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] Log opened at 2024-11-11 19:51:26.072132 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] Log opened at 2024-11-11 19:51:26.079420 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:51:27.027597 + +[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. +[31] [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-11-11 19:51:27.679358 + +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:51:28.016032 + +[27] Log opened at 2024-11-11 19:51:28.060038 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-11 19:51:28.393033 + +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-11-11 19:51:28.879925 + +[41] Log opened at 2024-11-11 19:51:28.892159 +[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. +[38] Log opened at 2024-11-11 19:51:28.896788 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-11 19:51:28.898406 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:51:29.602304 + +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-11 19:51:29.634757 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] Log opened at 2024-11-11 19:51:29.685357 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step 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. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] 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-11-11 19:51:30.007370 + +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-11-11 19:51:30.376462 + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:51:30.847527 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:51:31.238753 + +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-11 19:51:35.261852 + +[32] Log opened at 2024-11-11 19:52:00.279523 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:52:01.947510 + +[32] Log opened at 2024-11-11 19:52:02.055900 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:52:02.703852 + +[34] Log opened at 2024-11-11 19:52:02.903610 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] Log opened at 2024-11-11 19:52:02.914705 +[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] Log opened at 2024-11-11 19:52:02.943486 +[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. +[40] Log opened at 2024-11-11 19:52:03.000147 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-11-11 19:52:03.006536 +[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. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] 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-11-11 19:52:03.979058 + +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:52:04.622055 + +[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. +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-11-11 19:52:04.957652 + +[39] Log opened at 2024-11-11 19:52:04.989042 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step 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. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-11-11 19:52:05.342310 + +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-11 19:52:05.850099 + +[34] Log opened at 2024-11-11 19:52:05.863878 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] Log opened at 2024-11-11 19:52:05.865546 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] Log opened at 2024-11-11 19:52:05.866281 +[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. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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] 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-11-11 19:52:06.529613 + +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] Log opened at 2024-11-11 19:52:06.562101 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-11-11 19:52:06.609338 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step 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. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-11-11 19:52:06.946917 + +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-11 19:52:07.322976 + +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:52:07.689556 + +[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-11-11 19:52:08.071664 + +[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-11-11 19:52:12.654998 + +[31] Log opened at 2024-11-11 19:52:28.333621 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:52:30.022724 + +[31] Log opened at 2024-11-11 19:52:30.123700 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:52:30.766369 + +[27] Log opened at 2024-11-11 19:52:30.981405 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] Log opened at 2024-11-11 19:52:31.023393 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] Log opened at 2024-11-11 19:52:31.073377 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log opened at 2024-11-11 19:52:31.204659 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] Log opened at 2024-11-11 19:52:31.216329 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-11 19:52:32.040368 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:52:32.713023 + +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-11 19:52:33.066583 + +[42] Log opened at 2024-11-11 19:52:33.106419 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 19:52:33.431624 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:52:33.947148 + +[27] Log opened at 2024-11-11 19:52:33.959843 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] Log opened at 2024-11-11 19:52:33.960558 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[32] Log opened at 2024-11-11 19:52:33.959843 +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-11 19:52:34.694109 + +[42] Log opened at 2024-11-11 19:52:34.728720 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] Log opened at 2024-11-11 19:52:34.775394 +[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. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:52:35.048704 + +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:52:35.414437 + +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-11 19:52:35.799609 + +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-11 19:52:36.210322 + +[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-11-11 19:52:40.873398 + +[34] Log opened at 2024-11-11 19:53:02.709312 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:53:04.457772 + +[34] Log opened at 2024-11-11 19:53:04.545481 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:53:05.187361 + +[39] Log opened at 2024-11-11 19:53:05.380560 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-11-11 19:53:05.392113 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] Log opened at 2024-11-11 19:53:05.420743 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-11 19:53:05.479945 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-11 19:53:05.489427 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 19:53:06.488609 + +[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. +[45] [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-11-11 19:53:07.124567 + +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-11 19:53:07.450147 + +[41] Log opened at 2024-11-11 19:53:07.485830 +[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. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:53:07.829822 + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:53:08.357179 + +[45] Log opened at 2024-11-11 19:53:08.370845 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] Log opened at 2024-11-11 19:53:08.370352 +[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. +[31] Log opened at 2024-11-11 19:53:08.370839 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] 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. +[39] [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-11-11 19:53:09.070645 + +[41] Log opened at 2024-11-11 19:53:09.105283 +[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. +[27] Log opened at 2024-11-11 19:53:09.154096 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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. +[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). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [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-11-11 19:53:09.444109 + +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-11 19:53:09.838022 + +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:53:10.192915 + +[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-11-11 19:53:10.599765 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:53:14.958460 + +[27] Log opened at 2024-11-11 19:53:18.335446 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:53:19.998103 + +[27] Log opened at 2024-11-11 19:53:20.096252 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:53:20.738294 + +[27] Log opened at 2024-11-11 19:53:20.925218 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-11-11 19:53:20.932690 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] Log opened at 2024-11-11 19:53:20.961124 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] Log opened at 2024-11-11 19:53:21.014495 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] Log opened at 2024-11-11 19:53:21.021412 +[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. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:53:21.978544 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:53:22.608938 + +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-11 19:53:22.976580 + +[32] Log opened at 2024-11-11 19:53:23.011432 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [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. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-11 19:53:23.463090 + +[27] Log opened at 2024-11-11 19:53:23.479045 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] Log opened at 2024-11-11 19:53:23.479769 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] Log opened at 2024-11-11 19:53:23.479769 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 19:53:23.839732 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:53:24.602961 + +[32] Log opened at 2024-11-11 19:53:24.669010 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-11 19:53:24.948096 + +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-11 19:53:25.321541 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 19:53:25.698660 + +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:53:26.094510 + +[32] Log opened at 2024-11-11 19:53:28.847419 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 19:53:33.540863 + +[34] Log opened at 2024-11-11 19:53:40.445008 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:53:42.148905 + +[34] Log opened at 2024-11-11 19:53:42.230359 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:53:42.875115 + +[39] Log opened at 2024-11-11 19:53:43.060559 +[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. +[45] Log opened at 2024-11-11 19:53:43.068550 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-11 19:53:43.096061 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-11-11 19:53:43.155857 +[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. +[34] Log opened at 2024-11-11 19:53:43.164566 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-11 19:53:44.104499 + +[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. +[31] [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-11-11 19:53:44.753911 + +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:53:45.096071 + +[45] Log opened at 2024-11-11 19:53:45.129007 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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. +[34] [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-11-11 19:53:45.585240 + +[41] Log opened at 2024-11-11 19:53:45.597403 +[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. +[31] Log opened at 2024-11-11 19:53:45.597703 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] Log opened at 2024-11-11 19:53:45.597403 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:53:45.971903 + +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-11 19:53:46.738305 + +[45] Log opened at 2024-11-11 19:53:46.771468 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] Log opened at 2024-11-11 19:53:46.822343 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [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-11-11 19:53:47.083419 + +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 19:53:47.459055 + +[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-11-11 19:53:47.839122 + +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-11 19:53:48.250963 + +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 19:53:52.361851 + +[44] Log opened at 2024-11-11 20:22:29.067410 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-11 20:22:29.993871 + +[44] Log opened at 2024-11-11 20:22:30.005791 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-11 20:22:31.094130 + +[44] Log opened at 2024-11-11 20:22:31.186313 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-11 20:22:31.828648 + +[32] Log opened at 2024-11-11 20:22:31.973362 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 20:22:32.883408 + +[32] Log opened at 2024-11-11 20:22:35.544044 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 20:22:37.027878 + +[32] Log opened at 2024-11-11 20:22:37.043958 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 20:22:38.847415 + +[32] Log opened at 2024-11-11 20:22:38.936468 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 20:22:39.577422 + +[32] Log opened at 2024-11-11 20:22:39.768725 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-11-11 20:22:39.775849 +[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. +[39] Log opened at 2024-11-11 20:22:39.852389 +[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. +[45] Log opened at 2024-11-11 20:22:39.859977 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 20:22:40.780320 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 20:22:41.903222 + +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-11 20:22:42.383386 + +[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-11-11 20:22:43.255483 + +[41] Log opened at 2024-11-11 20:22:43.270666 +[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. +[39] Log opened at 2024-11-11 20:22:43.270832 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-11-11 20:22:43.270665 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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. +[39] [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-11-11 20:22:44.418180 + +[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-11-11 20:22:44.794277 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 20:22:45.224206 + +[27] Log opened at 2024-11-11 20:23:06.065702 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 20:23:07.989218 + +[42] Log opened at 2024-11-11 20:23:08.120922 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-11 20:23:08.762555 + +[42] Log opened at 2024-11-11 20:23:09.037895 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] Log opened at 2024-11-11 20:23:09.157979 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-11 20:23:09.166171 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-11 20:23:09.185724 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] Log opened at 2024-11-11 20:23:09.190831 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-11 20:23:10.130582 + +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-11 20:23:11.267751 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 20:23:11.643962 + +[44] Log opened at 2024-11-11 20:23:11.680567 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 20:23:12.564907 + +[42] Log opened at 2024-11-11 20:23:12.580879 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-11 20:23:12.583109 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-11 20:23:12.583127 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 20:23:13.368627 + +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-11 20:23:14.827198 + +[44] Log opened at 2024-11-11 20:23:14.858365 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-11 20:23:15.311316 + +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 20:23:15.694826 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 20:23:16.054800 + +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-11 20:23:16.507681 + +[44] Log opened at 2024-11-11 20:23:20.580709 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-11 20:23:29.137162 + +[45] Log opened at 2024-11-11 20:25:32.923118 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-11 20:25:34.831464 + +[45] Log opened at 2024-11-11 20:25:34.954443 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-11 20:25:35.600595 + +[41] Log opened at 2024-11-11 20:25:35.988820 +[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. +[39] Log opened at 2024-11-11 20:25:36.036152 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-11-11 20:25:36.051034 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] Log opened at 2024-11-11 20:25:36.130122 +[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. +[34] Log opened at 2024-11-11 20:25:36.132782 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 20:25:36.993970 + +[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-11-11 20:25:37.835716 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 20:25:38.383908 + +[39] Log opened at 2024-11-11 20:25:38.414768 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 20:25:38.867932 + +[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-11-11 20:25:39.496217 + +[41] Log opened at 2024-11-11 20:25:39.523911 +[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. +[32] Log opened at 2024-11-11 20:25:39.524946 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[43] Log opened at 2024-11-11 20:25:39.524947 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[32] [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. +[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). +[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). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 20:25:40.499549 + +[39] Log opened at 2024-11-11 20:25:40.536130 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] Log opened at 2024-11-11 20:25:40.585432 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 20:25:40.946593 + +[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-11-11 20:25:41.562259 + +[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-11-11 20:25:42.068765 + +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 20:25:50.549217 + +[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-11-11 20:25:51.326420 + +[31] Log opened at 2024-11-11 20:25:59.482990 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 20:26:01.242315 + +[31] Log opened at 2024-11-11 20:26:01.479589 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 20:26:02.125212 + +[27] Log opened at 2024-11-11 20:26:02.468121 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] Log opened at 2024-11-11 20:26:02.485285 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] Log opened at 2024-11-11 20:26:02.506989 +[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. +[45] Log opened at 2024-11-11 20:26:02.572336 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-11-11 20:26:02.573447 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-11 20:26:03.514179 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 20:26:04.143250 + +[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-11-11 20:26:04.556797 + +[44] Log opened at 2024-11-11 20:26:04.592876 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 20:26:05.124826 + +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-11 20:26:06.024612 + +[27] Log opened at 2024-11-11 20:26:06.041739 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] Log opened at 2024-11-11 20:26:06.043069 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] Log opened at 2024-11-11 20:26:06.043521 +[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. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-11 20:26:06.864230 + +[44] Log opened at 2024-11-11 20:26:06.894730 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-11-11 20:26:06.945211 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-11 20:26:07.302259 + +[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-11-11 20:26:07.865351 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 20:26:08.373948 + +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-11 20:26:09.073797 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 20:26:17.518354 + +[41] Log opened at 2024-11-11 20:26:44.806894 +[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-11-11 20:26:47.065673 + +[41] Log opened at 2024-11-11 20:26:47.174189 +[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-11-11 20:26:47.816139 + +[34] Log opened at 2024-11-11 20:26:48.184528 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] Log opened at 2024-11-11 20:26:48.198388 +[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. +[48] Log opened at 2024-11-11 20:26:48.218378 +[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. +[31] Log opened at 2024-11-11 20:26:48.289036 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] Log opened at 2024-11-11 20:26:48.291271 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[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). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 20:26:49.176022 + +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 20:26:49.903110 + +[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-11-11 20:26:50.237251 + +[39] Log opened at 2024-11-11 20:26:50.271936 +[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. +[31] [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). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 20:26:50.734052 + +[34] Log opened at 2024-11-11 20:26:50.754513 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] Log opened at 2024-11-11 20:26:50.755808 +[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. +[31] Log opened at 2024-11-11 20:26:50.755809 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-11 20:26:51.130476 + +[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-11-11 20:26:52.045836 + +[39] Log opened at 2024-11-11 20:26:52.078655 +[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. +[45] Log opened at 2024-11-11 20:26:52.129170 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [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). +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 20:26:52.564376 + +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 20:26:53.013113 + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 20:26:53.789669 + +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-11 20:27:01.623339 + +[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-11-11 20:27:02.212198 + +[27] Log opened at 2024-11-11 20:27:20.776107 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 20:27:22.924600 + +[27] Log opened at 2024-11-11 20:27:23.039693 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 20:27:23.682394 + +[44] Log opened at 2024-11-11 20:27:24.055632 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-11-11 20:27:24.075294 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-11 20:27:24.081778 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] Log opened at 2024-11-11 20:27:24.151286 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-11-11 20:27:24.159363 +[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. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[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). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 20:27:25.047960 + +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-11 20:27:25.823375 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 20:27:26.179216 + +[32] Log opened at 2024-11-11 20:27:26.209217 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 20:27:26.578651 + +[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-11-11 20:27:27.279467 + +[44] Log opened at 2024-11-11 20:27:27.299915 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] Log opened at 2024-11-11 20:27:27.300707 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-11-11 20:27:27.300707 +[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. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[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). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 20:27:28.755394 + +[32] Log opened at 2024-11-11 20:27:28.787738 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-11 20:27:28.834371 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-11 20:27:29.222633 + +[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-11-11 20:27:29.730986 + +[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-11-11 20:27:30.150613 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 20:27:30.721608 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 20:27:39.832554 + +[48] Log opened at 2024-11-11 20:28:24.938336 +[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-11-11 20:28:27.226850 + +[48] Log opened at 2024-11-11 20:28:27.360626 +[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-11-11 20:28:28.022597 + +[34] Log opened at 2024-11-11 20:28:28.321762 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-11 20:28:28.360699 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] Log opened at 2024-11-11 20:28:28.373784 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] Log opened at 2024-11-11 20:28:28.444840 +[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. +[48] Log opened at 2024-11-11 20:28:28.446394 +[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. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[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). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 20:28:29.329086 + +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 20:28:30.526290 + +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-11 20:28:31.087417 + +[31] Log opened at 2024-11-11 20:28:31.132948 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 20:28:31.926491 + +[34] Log opened at 2024-11-11 20:28:31.947799 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] Log opened at 2024-11-11 20:28:31.947864 +[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. +[45] Log opened at 2024-11-11 20:28:31.949014 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 20:28:32.695109 + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 20:28:33.589119 + +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-11 20:28:33.626473 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] Log opened at 2024-11-11 20:28:33.681169 +[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. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-11 20:28:34.010242 + +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 20:28:34.570335 + +[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-11-11 20:28:35.025961 + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 20:28:35.548867 + +[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-11-11 20:28:44.044720 + +[41] Log opened at 2024-11-11 20:31:45.789842 +[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-11-11 20:31:47.586882 + +[41] Log opened at 2024-11-11 20:31:47.731589 +[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-11-11 20:31:48.376324 + +[49] Log opened at 2024-11-11 20:31:48.689880 +[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. +[32] Log opened at 2024-11-11 20:31:48.753307 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-11 20:31:48.767297 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] Log opened at 2024-11-11 20:31:48.835835 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-11-11 20:31:48.846368 +[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. +[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). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 20:31:49.737238 + +[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. +[27] [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-11-11 20:31:50.594507 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 20:31:50.994195 + +[32] Log opened at 2024-11-11 20:31:51.027322 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-11 20:31:51.554768 + +[45] Log opened at 2024-11-11 20:31:51.576580 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] Log opened at 2024-11-11 20:31:51.576573 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[27] Log opened at 2024-11-11 20:31:51.577015 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 20:31:51.949130 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 20:31:53.098312 + +[32] Log opened at 2024-11-11 20:31:53.139393 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-11-11 20:31:53.184798 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-11 20:31:53.459211 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 20:31:53.822897 + +[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-11-11 20:31:54.179011 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 20:31:54.625032 + +[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-11-11 20:32:00.804250 + +[39] Log opened at 2024-11-11 20:32:33.059562 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-11-11 20:32:34.994017 + +[39] Log opened at 2024-11-11 20:32:35.162063 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-11-11 20:32:35.819947 + +[27] Log opened at 2024-11-11 20:32:36.214070 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-11 20:32:36.261252 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] Log opened at 2024-11-11 20:32:36.282885 +[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. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[44] Log opened at 2024-11-11 20:32:36.575831 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] Log opened at 2024-11-11 20:32:36.576284 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 20:32:37.323917 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 20:32:38.421778 + +[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-11-11 20:32:38.814607 + +[27] Log opened at 2024-11-11 20:32:38.844249 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-11 20:32:39.692344 + +[44] Log opened at 2024-11-11 20:32:39.709218 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-11 20:32:39.710363 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] Log opened at 2024-11-11 20:32:39.710787 +[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. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-11 20:32:40.073376 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 20:32:40.832526 + +[27] Log opened at 2024-11-11 20:32:40.872469 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] Log opened at 2024-11-11 20:32:40.931948 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-11 20:32:41.316655 + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 20:32:41.727483 + +[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-11-11 20:32:42.314926 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 20:32:42.727839 + +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-11 20:32:50.098998 + +[50] Log opened at 2024-11-11 20:34:42.336223 +[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-11-11 20:34:44.079271 + +[50] Log opened at 2024-11-11 20:34:44.274124 +[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-11-11 20:34:44.941203 + +[48] Log opened at 2024-11-11 20:34:45.491677 +[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. +[27] Log opened at 2024-11-11 20:34:45.554684 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-11 20:34:45.555142 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] Log opened at 2024-11-11 20:34:45.644798 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] Log opened at 2024-11-11 20:34:45.651328 +[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. +[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). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 20:34:46.518189 + +[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. +[31] [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-11-11 20:34:47.665876 + +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 20:34:47.993127 + +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] Log opened at 2024-11-11 20:34:48.028112 +[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. +[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. +[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). +[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-11-11 20:34:48.407238 + +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-11 20:34:49.317122 + +[27] Log opened at 2024-11-11 20:34:49.334395 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[31] Log opened at 2024-11-11 20:34:49.334396 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] Log opened at 2024-11-11 20:34:49.335158 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 20:34:50.498712 + +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] Log opened at 2024-11-11 20:34:50.549707 +[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. +[39] Log opened at 2024-11-11 20:34:50.607095 +[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. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[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). +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-11 20:34:50.947438 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 20:34:51.466989 + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-11 20:34:52.414180 + +[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-11-11 20:34:52.843119 + +[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-11-11 20:35:01.243832 + +[41] Log opened at 2024-11-11 20:35:42.412461 +[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-11-11 20:35:44.705656 + +[41] Log opened at 2024-11-11 20:35:44.860486 +[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-11-11 20:35:45.520626 + +[44] Log opened at 2024-11-11 20:35:45.945375 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] Log opened at 2024-11-11 20:35:46.004812 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] Log opened at 2024-11-11 20:35:46.036722 +[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. +[27] Log opened at 2024-11-11 20:35:46.044540 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] Log opened at 2024-11-11 20:35:46.054492 +[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. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 20:35:46.987117 + +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-11 20:35:47.771158 + +[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-11-11 20:35:48.264993 + +[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-11-11 20:35:48.682103 + +[44] Log opened at 2024-11-11 20:35:48.715123 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 20:35:49.664339 + +[51] Log opened at 2024-11-11 20:35:49.681583 +[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. +[34] Log opened at 2024-11-11 20:35:49.682031 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-11 20:35:49.682155 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-11 20:35:50.883200 + +[44] Log opened at 2024-11-11 20:35:50.919740 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] Log opened at 2024-11-11 20:35:50.972077 +[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. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 20:35:51.256089 + +[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. +[34] [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-11-11 20:35:51.649580 + +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 20:35:52.047059 + +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-11 20:35:52.488197 + +[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-11-11 20:36:00.854299 + +[32] Log opened at 2024-11-11 20:39:53.427319 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] Log opened at 2024-11-11 20:39:53.439627 +[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-11-11 20:39:53.448024 +[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. +[27] Log opened at 2024-11-11 20:39:53.457497 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] Log opened at 2024-11-11 20:39:53.468252 +[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. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 20:40:01.306011 + +[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-11-11 20:40:09.197025 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-11 20:40:17.449372 + +[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-11-11 20:40:24.324900 + +[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-11-11 20:40:30.280622 + +[44] Log opened at 2024-11-11 20:50:34.675061 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-11 20:50:36.598877 + +[44] Log opened at 2024-11-11 20:50:36.809184 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-11 20:50:37.465954 + +[52] Log opened at 2024-11-11 20:50:37.922614 +[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. +[39] Log opened at 2024-11-11 20:50:37.974250 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-11-11 20:50:38.024605 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] Log opened at 2024-11-11 20:50:38.035968 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] Log opened at 2024-11-11 20:50:38.040518 +[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] [Step 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). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] 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-11-11 20:50:38.993525 + +[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-11-11 20:50:40.010475 + +[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-11-11 20:50:40.600176 + +[52] Log opened at 2024-11-11 20:50:40.621393 +[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. +[39] Log opened at 2024-11-11 20:50:40.622794 +[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. +[48] Log opened at 2024-11-11 20:50:40.622788 +[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. +[32] [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). +[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). +[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). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 20:50:41.189622 + +[32] Log opened at 2024-11-11 20:50:41.222667 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 20:50:41.763307 + +[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. +[52] [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-11-11 20:50:42.219953 + +[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. +[48] [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-11-11 20:50:42.578400 + +[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-11-11 20:50:42.954588 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 20:50:44.090333 + +[52] Log opened at 2024-11-11 20:50:44.123531 +[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. +[32] Log opened at 2024-11-11 20:50:44.167780 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 20:50:45.330426 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 20:50:53.041569 + +[41] Log opened at 2024-11-11 20:53:39.371035 +[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-11-11 20:53:41.393679 + +[41] Log opened at 2024-11-11 20:53:41.565604 +[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-11-11 20:53:42.222589 + +[50] Log opened at 2024-11-11 20:53:42.669889 +[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. +[53] Log opened at 2024-11-11 20:53:42.712583 +[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. +[34] Log opened at 2024-11-11 20:53:42.753554 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] Log opened at 2024-11-11 20:53:42.800356 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] Log opened at 2024-11-11 20:53:42.807001 +[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. +[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). +[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). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] 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). +[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-11-11 20:53:43.710665 + +[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-11-11 20:53:44.668053 + +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-11 20:53:45.275166 + +[53] Log opened at 2024-11-11 20:53:45.301738 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] Log opened at 2024-11-11 20:53:45.301738 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] Log opened at 2024-11-11 20:53:45.301738 +[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. +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 20:53:45.947493 + +[34] Log opened at 2024-11-11 20:53:45.981455 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 20:53:46.460903 + +[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-11-11 20:53:46.929673 + +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-11 20:53:47.525718 + +[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-11-11 20:53:48.020660 + +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 20:53:49.437021 + +[50] Log opened at 2024-11-11 20:53:49.484414 +[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. +[34] Log opened at 2024-11-11 20:53:49.531292 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 20:53:50.791840 + +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 20:53:58.160089 + +[32] Log opened at 2024-11-11 20:55:22.263077 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 20:55:24.368062 + +[32] Log opened at 2024-11-11 20:55:24.564998 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 20:55:25.231770 + +[51] Log opened at 2024-11-11 20:55:25.645291 +[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. +[39] Log opened at 2024-11-11 20:55:25.685926 +[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. +[54] Log opened at 2024-11-11 20:55:25.732765 +[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. +[53] Log opened at 2024-11-11 20:55:25.744496 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[41] Log opened at 2024-11-11 20:55:25.744496 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[53] [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. +[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). +[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). +[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). +[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). +[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-11-11 20:55:26.654272 + +[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-11-11 20:55:27.660114 + +[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-11-11 20:55:28.226220 + +[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-11-11 20:55:28.667123 + +[51] Log opened at 2024-11-11 20:55:28.775467 +[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). +[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-11-11 20:55:29.428996 + +[54] Log opened at 2024-11-11 20:55:29.458333 +[39] Log opened at 2024-11-11 20:55:29.458341 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[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. +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] Log opened at 2024-11-11 20:55:29.459472 +[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. +[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). +[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). +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] 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. +[54] [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-11-11 20:55:30.883887 + +[51] Log opened at 2024-11-11 20:55:30.924391 +[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. +[41] Log opened at 2024-11-11 20:55:30.977114 +[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). +[54] [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). +[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] 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-11-11 20:55:31.264958 + +[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-11-11 20:55:31.706970 + +[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-11-11 20:55:32.194224 + +[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-11-11 20:55:39.830146 + +[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-11-11 20:55:40.502461 + +[55] Log opened at 2024-11-11 20:57:09.296515 +[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-11-11 20:57:11.381437 + +[55] Log opened at 2024-11-11 20:57:11.550260 +[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-11-11 20:57:12.203388 + +[54] Log opened at 2024-11-11 20:57:12.608146 +[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-11-11 20:57:12.666302 +[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. +[32] Log opened at 2024-11-11 20:57:12.684383 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] Log opened at 2024-11-11 20:57:12.693652 +[39] Log opened at 2024-11-11 20:57:12.693652 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[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. +[39] [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). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] 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-11-11 20:57:13.651503 + +[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. +[32] [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-11-11 20:57:14.424526 + +[41] Log opened at 2024-11-11 20:57:14.444410 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] Log opened at 2024-11-11 20:57:14.444717 +[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. +[55] Log opened at 2024-11-11 20:57:14.445704 +[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. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[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). +[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). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 20:57:14.784038 + +[32] Log opened at 2024-11-11 20:57:14.831671 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 20:57:16.284184 + +[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-11-11 20:57:16.724089 + +[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-11-11 20:57:17.203354 + +[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-11-11 20:57:17.624698 + +[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-11-11 20:57:18.080658 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 20:57:19.174444 + +[54] Log opened at 2024-11-11 20:57:19.207873 +[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. +[32] Log opened at 2024-11-11 20:57:19.265158 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 20:57:20.476018 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 20:57:29.605336 + +[34] Log opened at 2024-11-11 20:58:21.568733 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 20:58:23.521923 + +[34] Log opened at 2024-11-11 20:58:23.710686 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 20:58:24.371959 + +[53] Log opened at 2024-11-11 20:58:24.799756 +[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. +[52] Log opened at 2024-11-11 20:58:24.828218 +[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-11-11 20:58:24.851327 +[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. +[39] Log opened at 2024-11-11 20:58:24.868459 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-11-11 20:58:24.870785 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 20:58:25.845244 + +[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-11-11 20:58:26.932331 + +[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-11-11 20:58:27.682767 + +[53] Log opened at 2024-11-11 20:58:27.731972 +[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). +[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-11-11 20:58:28.682245 + +[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-11-11 20:58:29.532296 + +[52] Log opened at 2024-11-11 20:58:29.558103 +[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. +[39] Log opened at 2024-11-11 20:58:29.558103 +[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. +[56] Log opened at 2024-11-11 20:58:29.560353 +[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). +[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). +[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). +[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-11-11 20:58:30.340880 + +[53] Log opened at 2024-11-11 20:58:30.379472 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-11-11 20:58:30.425862 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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. +[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). +[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-11-11 20:58:30.822306 + +[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-11-11 20:58:31.266750 + +[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-11-11 20:58:32.156538 + +[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-11-11 20:58:38.639543 + +[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-11-11 20:58:39.132889 + +[32] Log opened at 2024-11-11 20:59:03.166053 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 20:59:05.343105 + +[32] Log opened at 2024-11-11 20:59:05.548524 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 20:59:06.217036 + +[50] Log opened at 2024-11-11 20:59:06.635659 +[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. +[34] Log opened at 2024-11-11 20:59:06.704325 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] Log opened at 2024-11-11 20:59:06.718188 +[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. +[52] Log opened at 2024-11-11 20:59:06.727414 +[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-11-11 20:59:06.728786 +[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. +[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). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[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). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 20:59:07.704584 + +[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-11-11 20:59:08.394860 + +[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-11-11 20:59:09.021935 + +[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-11-11 20:59:09.859645 + +[50] Log opened at 2024-11-11 20:59:09.881743 +[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. +[34] Log opened at 2024-11-11 20:59:09.883251 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] Log opened at 2024-11-11 20:59:09.883251 +[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. +[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). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[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-11-11 20:59:10.409212 + +[57] Log opened at 2024-11-11 20:59:10.466114 +[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). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 20:59:11.300358 + +[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-11-11 20:59:11.837456 + +[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-11-11 20:59:12.428894 + +[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-11-11 20:59:13.591767 + +[50] Log opened at 2024-11-11 20:59:13.637604 +[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] Log opened at 2024-11-11 20:59:13.696565 +[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. +[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). +[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] 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-11-11 20:59:14.957740 + +[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-11-11 20:59:21.678487 + +[53] Log opened at 2024-11-11 21:00:28.709172 +[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-11-11 21:00:30.514378 + +[53] Log opened at 2024-11-11 21:00:30.714681 +[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-11-11 21:00:31.374913 + +[32] Log opened at 2024-11-11 21:00:31.809390 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] Log opened at 2024-11-11 21:00:31.830938 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] Log opened at 2024-11-11 21:00:31.867220 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[56] Log opened at 2024-11-11 21:00:31.878896 +[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] Log opened at 2024-11-11 21:00:31.881764 +[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. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 21:00:32.805696 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 21:00:33.500035 + +[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-11-11 21:00:33.967748 + +[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-11-11 21:00:34.908554 + +[34] Log opened at 2024-11-11 21:00:34.942348 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[56] Log opened at 2024-11-11 21:00:34.942348 +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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. +[32] Log opened at 2024-11-11 21:00:34.942342 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-11-11 21:00:35.398496 + +[58] Log opened at 2024-11-11 21:00:35.486013 +[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). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 21:00:36.226900 + +[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-11-11 21:00:36.705339 + +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 21:00:37.231787 + +[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-11-11 21:00:38.411964 + +[32] Log opened at 2024-11-11 21:00:38.448168 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 21:00:39.777601 + +[50] Log opened at 2024-11-11 21:00:59.237222 +[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-11-11 21:01:08.559482 + +[41] Log opened at 2024-11-11 21:03:08.518832 +[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-11-11 21:03:10.870458 + +[41] Log opened at 2024-11-11 21:03:11.063876 +[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-11-11 21:03:11.727767 + +[53] Log opened at 2024-11-11 21:03:12.288324 +[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. +[54] Log opened at 2024-11-11 21:03:12.308787 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] Log opened at 2024-11-11 21:03:12.326270 +[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. +[34] Log opened at 2024-11-11 21:03:12.335920 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[56] Log opened at 2024-11-11 21:03:12.341670 +[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. +[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). +[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[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-11-11 21:03:13.309332 + +[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. +[56] [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-11-11 21:03:13.954760 + +[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-11-11 21:03:14.342608 + +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 21:03:15.279456 + +[53] Log opened at 2024-11-11 21:03:15.292765 +[54] Log opened at 2024-11-11 21:03:15.293202 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] Log opened at 2024-11-11 21:03:15.293183 +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] [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). +[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). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 21:03:15.801335 + +[59] Log opened at 2024-11-11 21:03:15.856295 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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. +[54] [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-11-11 21:03:16.541646 + +[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-11-11 21:03:16.906147 + +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 21:03:17.319676 + +[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-11-11 21:03:18.611300 + +[53] Log opened at 2024-11-11 21:03:18.652544 +[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. +[34] Log opened at 2024-11-11 21:03:18.695165 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-11 21:03:26.637239 + +[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-11-11 21:03:27.179020 + +[57] Log opened at 2024-11-11 21:04:03.869477 +[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-11-11 21:04:05.827399 + +[57] Log opened at 2024-11-11 21:04:06.110306 +[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-11-11 21:04:06.790259 + +[54] Log opened at 2024-11-11 21:04:07.293478 +[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. +[56] Log opened at 2024-11-11 21:04:07.321727 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[60] Log opened at 2024-11-11 21:04:07.351493 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] Log opened at 2024-11-11 21:04:07.398037 +[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. +[41] Log opened at 2024-11-11 21:04:07.410394 +[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). +[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[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). +[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-11-11 21:04:08.386830 + +[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-11-11 21:04:09.224901 + +[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-11-11 21:04:09.640021 + +[54] Log opened at 2024-11-11 21:04:09.689804 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 21:04:10.354899 + +[60] Log opened at 2024-11-11 21:04:10.372723 +[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. +[56] Log opened at 2024-11-11 21:04:10.374140 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[59] Log opened at 2024-11-11 21:04:10.374134 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 21:04:10.998326 + +[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. +[59] [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-11-11 21:04:12.160412 + +[54] Log opened at 2024-11-11 21:04:12.188794 +[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-11-11 21:04:12.236455 +[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. +[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. +[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). +[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-11-11 21:04:12.556443 + +[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-11-11 21:04:13.091952 + +[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-11-11 21:04:13.603214 + +[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-11-11 21:04:14.179938 + +[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-11-11 21:04:22.970900 + +[32] Log opened at 2024-11-11 21:09:37.626070 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 21:09:39.687051 + +[32] Log opened at 2024-11-11 21:09:39.925004 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 21:09:40.582172 + +[59] Log opened at 2024-11-11 21:09:41.088959 +[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. +[57] Log opened at 2024-11-11 21:09:41.109202 +[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. +[56] Log opened at 2024-11-11 21:09:41.124288 +[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. +[50] Log opened at 2024-11-11 21:09:41.155224 +[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. +[61] Log opened at 2024-11-11 21:09:41.159686 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] [Step 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). +[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). +[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). +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] 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-11-11 21:09:42.086406 + +[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-11-11 21:09:42.491905 + +[57] Log opened at 2024-11-11 21:09:42.536004 +[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. +[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). +[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-11-11 21:09:43.060669 + +[50] Log opened at 2024-11-11 21:09:43.079680 +[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-11-11 21:09:43.080857 +[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. +[32] Log opened at 2024-11-11 21:09:43.082284 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 21:09:44.169689 + +[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-11-11 21:09:44.731992 + +[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-11-11 21:09:45.559851 + +[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-11-11 21:09:45.913051 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 21:09:46.322480 + +[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-11-11 21:09:46.686795 + +[41] Log opened at 2024-11-11 21:10:09.957367 +[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-11-11 21:10:11.860999 + +[41] Log opened at 2024-11-11 21:10:12.213209 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] Log opened at 2024-11-11 21:10:12.213902 +[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. +[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). +[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-11-11 21:10:12.873962 + +[59] Log opened at 2024-11-11 21:10:13.268152 +[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. +[61] Log opened at 2024-11-11 21:10:13.276344 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] Log opened at 2024-11-11 21:10:13.295942 +[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. +[62] Log opened at 2024-11-11 21:10:13.311370 +[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. +[53] Log opened at 2024-11-11 21:10:13.316097 +[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. +[41] [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). +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[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). +[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-11-11 21:10:13.782027 + +[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-11-11 21:10:14.310862 + +[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-11-11 21:10:15.158208 + +[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-11-11 21:10:15.728940 + +[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-11-11 21:10:16.296549 + +[59] Log opened at 2024-11-11 21:10:16.458429 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 21:10:17.115581 + +[61] Log opened at 2024-11-11 21:10:17.129877 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] Log opened at 2024-11-11 21:10:17.131283 +[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. +[62] Log opened at 2024-11-11 21:10:17.132059 +[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. +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] 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-11-11 21:10:18.575423 + +[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. +[61] [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-11-11 21:10:18.992278 + +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[61] Log closed at 2024-11-11 21:10:19.374370 + +[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-11-11 21:10:19.731629 + +[32] Log opened at 2024-11-11 21:10:28.267873 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[56] Log opened at 2024-11-11 21:10:28.332962 +[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. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-11 21:10:29.832018 + +[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-11-11 21:10:37.241058 + +[41] Log opened at 2024-11-11 21:11:48.597099 +[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-11-11 21:11:50.479133 + +[41] Log opened at 2024-11-11 21:11:50.643997 +[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-11-11 21:11:51.303450 + +[59] Log opened at 2024-11-11 21:11:51.723420 +[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. +[53] Log opened at 2024-11-11 21:11:51.743310 +[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. +[61] Log opened at 2024-11-11 21:11:51.809030 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] Log opened at 2024-11-11 21:11:51.851360 +[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. +[62] Log opened at 2024-11-11 21:11:51.854953 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] [Step 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). +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[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-11-11 21:11:52.709648 + +[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. +[61] [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-11-11 21:11:53.467810 + +[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-11-11 21:11:53.851011 + +[59] Log opened at 2024-11-11 21:11:53.896409 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 21:11:54.844400 + +[53] Log opened at 2024-11-11 21:11:54.861583 +[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. +[61] Log opened at 2024-11-11 21:11:54.862542 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] Log opened at 2024-11-11 21:11:54.865174 +[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. +[62] [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). +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 21:11:55.375292 + +[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-11-11 21:11:56.220888 + +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] Log opened at 2024-11-11 21:11:56.255884 +[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. +[62] Log opened at 2024-11-11 21:11:56.306529 +[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. +[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. +[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). +[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] 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-11-11 21:11:56.636673 + +[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-11-11 21:11:57.074719 + +[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-11-11 21:11:57.503193 + +[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-11-11 21:12:05.303070 + +[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-11-11 21:12:05.906539 + +[56] Log opened at 2024-11-11 21:12:40.307246 +[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-11-11 21:12:46.952692 + +[64] Log opened at 2024-11-11 21:23:18.949588 +[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-11-11 21:23:20.751519 + +[64] Log opened at 2024-11-11 21:23:20.865202 +[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-11-11 21:23:21.509530 + +[41] Log opened at 2024-11-11 21:23:21.802356 +[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. +[64] Log opened at 2024-11-11 21:23:21.816768 +[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. +[61] Log opened at 2024-11-11 21:23:21.864224 +[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. +[53] Log opened at 2024-11-11 21:23:21.916344 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] Log opened at 2024-11-11 21:23:21.926075 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 21:23:22.800191 + +[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. +[61] [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-11-11 21:23:23.472126 + +[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-11-11 21:23:23.797694 + +[41] Log opened at 2024-11-11 21:23:23.843530 +[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). +[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-11-11 21:23:24.583578 + +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[61] Log opened at 2024-11-11 21:23:24.600166 +[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. +[53] Log opened at 2024-11-11 21:23:24.600166 +[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. +[64] Log opened at 2024-11-11 21:23:24.600968 +[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. +[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. +[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). +[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). +[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). +[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-11-11 21:23:24.992168 + +[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-11-11 21:23:25.828051 + +[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-11-11 21:23:26.379110 + +[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-11-11 21:23:27.031648 + +[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-11-11 21:23:27.518786 + +[56] Log opened at 2024-11-11 21:24:16.423081 +[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-11-11 21:24:18.147586 + +[56] Log opened at 2024-11-11 21:24:18.309990 +[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-11-11 21:24:18.965614 + +[62] Log opened at 2024-11-11 21:24:19.417471 +[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. +[54] Log opened at 2024-11-11 21:24:19.435579 +[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-11-11 21:24:19.447316 +[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. +[57] Log opened at 2024-11-11 21:24:19.487409 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] Log opened at 2024-11-11 21:24:19.492779 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 21:24:20.426649 + +[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-11-11 21:24:21.270302 + +[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-11-11 21:24:21.821327 + +[62] Log opened at 2024-11-11 21:24:21.867745 +[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). +[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-11-11 21:24:22.560992 + +[57] Log opened at 2024-11-11 21:24:22.574257 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-11-11 21:24:22.582732 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[54] Log opened at 2024-11-11 21:24:22.582785 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-11-11 21:24:23.115739 + +[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-11-11 21:24:24.275861 + +[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. +[57] [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-11-11 21:24:24.770862 + +[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-11-11 21:24:25.163159 + +[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-11-11 21:24:25.574226 + +[64] Log opened at 2024-11-11 21:25:26.379662 +[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-11-11 21:25:28.122480 + +[64] Log opened at 2024-11-11 21:25:28.291166 +[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-11-11 21:25:28.953224 + +[63] Log opened at 2024-11-11 21:25:29.349445 +[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. +[56] Log opened at 2024-11-11 21:25:29.382023 +[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. +[65] Log opened at 2024-11-11 21:25:29.421630 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] Log opened at 2024-11-11 21:25:29.454906 +[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. +[62] Log opened at 2024-11-11 21:25:29.467703 +[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. +[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). +[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). +[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] 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). +[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-11-11 21:25:30.364532 + +[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. +[65] [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-11-11 21:25:31.011664 + +[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-11-11 21:25:31.346190 + +[63] Log opened at 2024-11-11 21:25:31.397611 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[62] [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). +[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-11-11 21:25:31.730209 + +[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-11-11 21:25:32.236652 + +[56] Log opened at 2024-11-11 21:25:32.249362 +[65] Log opened at 2024-11-11 21:25:32.249368 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[65] [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. +[59] Log opened at 2024-11-11 21:25:32.255210 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] 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. +[65] [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-11-11 21:25:33.009424 + +[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-11-11 21:25:33.385343 + +[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-11-11 21:25:33.747642 + +[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-11-11 21:25:34.169728 + +[41] Log opened at 2024-11-11 21:26:04.923526 +[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-11-11 21:26:06.687128 + +[41] Log opened at 2024-11-11 21:26:06.912198 +[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-11-11 21:26:07.585455 + +[63] Log opened at 2024-11-11 21:26:08.089810 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[64] Log opened at 2024-11-11 21:26:08.109680 +[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. +[62] Log opened at 2024-11-11 21:26:08.123783 +[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. +[66] Log opened at 2024-11-11 21:26:08.182035 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[61] Log opened at 2024-11-11 21:26:08.197250 +[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. +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[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-11-11 21:26:09.142056 + +[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[65] Log opened at 2024-11-11 21:26:10.275093 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] [Step 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. +[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 21:26:10.492853 + +[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-11-11 21:26:10.822704 + +[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[66] Log closed at 2024-11-11 21:26:11.350402 + +[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-11-11 21:26:11.729230 + +[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-11-11 21:26:12.736205 + +[65] Log opened at 2024-11-11 21:26:12.874233 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-11-11 21:26:13.535235 + +[57] Log opened at 2024-11-11 21:26:13.954056 +[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. +[67] Log opened at 2024-11-11 21:26:13.972085 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-11-11 21:26:14.005017 +[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. +[59] Log opened at 2024-11-11 21:26:14.033404 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[56] Log opened at 2024-11-11 21:26:14.039965 +[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. +[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). +[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-11-11 21:26:14.974178 + +[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-11-11 21:26:15.848383 + +[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-11-11 21:26:16.258308 + +[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. +[41] [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-11-11 21:26:16.887749 + +[57] Log opened at 2024-11-11 21:26:16.903426 +[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. +[67] Log opened at 2024-11-11 21:26:16.904172 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] Log opened at 2024-11-11 21:26:16.906843 +[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. +[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. +[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). +[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[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-11-11 21:26:17.244146 + +[41] Log opened at 2024-11-11 21:26:17.297894 +[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). +[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-11-11 21:26:17.970243 + +[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-11-11 21:26:18.503455 + +[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-11-11 21:26:18.918717 + +[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-11-11 21:26:20.068065 + +[57] Log opened at 2024-11-11 21:26:20.106140 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-11-11 21:26:20.154731 +[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. +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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-11-11 21:26:21.226433 + +[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-11-11 21:26:26.242617 + +[63] Log opened at 2024-11-11 21:26:32.936136 +[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-11-11 21:26:34.746571 + +[63] Log opened at 2024-11-11 21:26:34.873403 +[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-11-11 21:26:35.517509 + +[62] Log opened at 2024-11-11 21:26:35.840455 +[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. +[61] Log opened at 2024-11-11 21:26:35.893261 +[66] Log opened at 2024-11-11 21:26:35.893291 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 21:26:36.851152 + +[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-11-11 21:26:37.702226 + +[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[66] Log closed at 2024-11-11 21:26:38.124879 + +[61] Log opened at 2024-11-11 21:26:40.938590 +[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-11-11 21:26:42.197426 + +[59] Log opened at 2024-11-11 21:27:19.002662 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-11-11 21:27:20.669510 + +[59] Log opened at 2024-11-11 21:27:20.832569 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-11-11 21:27:21.495136 + +[67] Log opened at 2024-11-11 21:27:21.862445 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] Log opened at 2024-11-11 21:27:21.879480 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-11-11 21:27:21.879483 +[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. +[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-11-11 21:27:22.841912 + +[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-11-11 21:27:23.945873 + +[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-11-11 21:27:24.293683 + +[65] Log opened at 2024-11-11 21:27:55.068951 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-11-11 21:27:56.729021 + +[65] Log opened at 2024-11-11 21:27:56.928659 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-11-11 21:27:57.592922 + +[59] Log opened at 2024-11-11 21:27:57.962497 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[63] Log opened at 2024-11-11 21:27:58.004474 +[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. +[68] Log opened at 2024-11-11 21:27:58.013423 +[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. +[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] 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-11-11 21:27:58.982462 + +[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. +[68] [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-11-11 21:27:59.642440 + +[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[68] Log closed at 2024-11-11 21:27:59.992266 + +[57] Log opened at 2024-11-11 21:29:19.678495 +[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-11-11 21:29:21.757677 + +[57] Log opened at 2024-11-11 21:29:21.845475 +[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-11-11 21:29:22.489688 + +[65] Log opened at 2024-11-11 21:29:22.692625 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[62] Log opened at 2024-11-11 21:29:22.701480 +[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. +[61] Log opened at 2024-11-11 21:29:22.711295 +[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. +[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] 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-11-11 21:29:23.735885 + +[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-11-11 21:29:24.386430 + +[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-11-11 21:29:24.721729 + +[59] Log opened at 2024-11-11 21:29:45.489838 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-11-11 21:29:47.157262 + +[59] Log opened at 2024-11-11 21:29:47.253501 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-11-11 21:29:47.896026 + +[68] Log opened at 2024-11-11 21:29:48.134689 +[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. +[67] Log opened at 2024-11-11 21:29:48.164791 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[70] Log opened at 2024-11-11 21:29:48.166037 +[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' +[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-11-11 21:29:49.117127 + +[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[68] Log closed at 2024-11-11 21:29:50.230478 + +[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[70] Log closed at 2024-11-11 21:29:50.682844 + +[62] Log opened at 2024-11-11 21:31:52.524938 +[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-11-11 21:31:54.131420 + +[62] Log opened at 2024-11-11 21:31:54.271282 +[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-11-11 21:31:54.923680 + +[56] Log opened at 2024-11-11 21:31:55.244143 +[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. +[59] Log opened at 2024-11-11 21:31:55.277587 +[65] Log opened at 2024-11-11 21:31:55.277594 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[59] [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). +[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-11-11 21:31:56.248401 + +[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. +[59] [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-11-11 21:31:56.877795 + +[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-11-11 21:31:57.214385 + +[56] Log opened at 2024-11-11 21:32:01.540581 +[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-11-11 21:32:02.600556 +