diff --git a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php index 37c7b857..e801f1df 100755 --- a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php +++ b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php @@ -137,9 +137,13 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController // Se obtiene el cliente ID a partir del usuario de la sesion $model_user = model('App\Models\Usuarios\UserModel'); $user = $model_user->find(auth()->user()->id); - $clienteId = $user->cliente_id; - - + if(auth()->user()->inGroup('cliente-admin') || auth()->user()->inGroup('cliente-editor')){ + $clienteId = $user->cliente_id; + } + else{ + $clienteId = $presupuestoEntity->cliente_id; + } + $this->viewData['formAction'] = 'edit'; $this->viewData['paisList'] = $this->getPaisListItems(); diff --git a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/items/_disenioCubierta.php b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/items/_disenioCubierta.php index 6117c98a..2205844d 100644 --- a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/items/_disenioCubierta.php +++ b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/items/_disenioCubierta.php @@ -306,7 +306,7 @@
-
+
@@ -315,7 +315,7 @@
-
+
@@ -326,7 +326,7 @@
-
+
@@ -338,7 +338,7 @@
-
+
diff --git a/ci4/app/Views/themes/vuexy/main/menus/presupuesto_menu.php b/ci4/app/Views/themes/vuexy/main/menus/presupuesto_menu.php index 21d330de..6113ae93 100644 --- a/ci4/app/Views/themes/vuexy/main/menus/presupuesto_menu.php +++ b/ci4/app/Views/themes/vuexy/main/menus/presupuesto_menu.php @@ -48,30 +48,30 @@ if (auth()->user()->can('presupuesto.menu')) { diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js index 543c7dd6..36d163c8 100644 --- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js +++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js @@ -33,6 +33,8 @@ class DatosGenerales { this.fresado = $(this.domItem.find("#fresado")[0]); this.cosido = $(this.domItem.find("#cosido")[0]); + this.grapado = $(this.domItem.find("#grapado")[0]); + this.espiral = $(this.domItem.find("#espiral")[0]); this.tiposLibro = this.domItem.find(".tipo-libro"); @@ -396,7 +398,7 @@ class DatosGenerales { } this.prototipo.prop('checked', datos.prototipo); - this.ivaReducido.val(datos.ivaReducido? 1: 0).trigger('change'); + this.ivaReducido.val(datos.ivaReducido ? 1 : 0).trigger('change'); } getDimensionLibro() { @@ -492,6 +494,16 @@ class DatosGenerales { this.divPaginasCuaderillo.addClass('d-none'); } + if (this.grapado.hasClass('selected') || this.espiral.hasClass('selected')) { + $('#addSobrecubierta').prop('checked', false).trigger('change'); + $(".sobrecubierta-items").addClass('d-none'); + } + else{ + if($('#addSobrecubierta').hasClass('d-none')){ + $('#addSobrecubierta').removeClass('d-none'); + } + } + // Para recalcular el presupuesto element.trigger('change'); } diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/disenioCubierta.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/disenioCubierta.js index e39f399c..fa8148c8 100644 --- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/disenioCubierta.js +++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/disenioCubierta.js @@ -148,7 +148,7 @@ class DisenioCubierta { this.cabezada.val(datosCubierta.cabezada).trigger('change'); } else { - this.carasCubierta.val(datosCubierta.caras).trigger('change'); + this.carasCubierta.val(datosCubierta.paginas).trigger('change'); if (datosCubierta.solapas) { this.conSolapas.trigger('click'); this.tamanioSolapasCubierta.val(datosCubierta.solapas_ancho); diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js index eb5b444b..9e906b68 100644 --- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js +++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js @@ -273,6 +273,11 @@ class PresupuestoCliente { $('#loader').modal('hide'); + if(response === null || response === undefined || response === ""){ + popErrorAlert("No se ha podido calcular el presupuesto para los datos proporcionados. Por favor, póngase en contacto con el departamento comercial." + , "sk-alert-2", false); + return; + } if (Object.values(response.errors).some((value) => value !== "")) { if (response.errors.status == 1) { popErrorAlert("No se ha podido calcular el presupuesto para los datos proporcionados. Por favor, póngase en contacto con el departamento comercial." @@ -462,10 +467,10 @@ class PresupuestoCliente { setTimeout(() => { //this.checkForm({ target: { id: 'tirada' } }); + /*this.validationStepper.next(); this.validationStepper.next(); this.validationStepper.next(); - this.validationStepper.next(); - this.validationStepper.next(); + this.validationStepper.next();*/ $('#loader').modal('hide'); this.calcularPresupuesto = true; this.checkForm({ target: { id: 'tirada' } }); diff --git a/xdebug.log b/xdebug.log index dca3bcfa..fa69e2e2 100644 --- a/xdebug.log +++ b/xdebug.log @@ -111151,3 +111151,5486 @@ Stack trace: [37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). [37] Log closed at 2024-10-22 08:27:56.574308 +[22] Log opened at 2024-10-22 08:31:20.589734 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 08:31:22.291433 + +[22] Log opened at 2024-10-22 08:31:22.466475 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 08:31:23.107080 + +[23] Log opened at 2024-10-22 08:31:23.435792 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] Log opened at 2024-10-22 08:31:23.471328 +[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. +[22] Log opened at 2024-10-22 08:31:23.474618 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[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). +[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. +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 08:31:24.446257 + +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 08:31:24.775397 + +[33] Log opened at 2024-10-22 08:31:24.825086 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [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). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 08:31:25.428894 + +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 08:31:26.288622 + +[30] Log opened at 2024-10-22 08:35:06.057842 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-22 08:35:07.770319 + +[30] Log opened at 2024-10-22 08:35:07.964080 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-22 08:35:08.622864 + +[25] Log opened at 2024-10-22 08:35:09.021095 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] Log opened at 2024-10-22 08:35:09.034816 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] Log opened at 2024-10-22 08:35:09.041652 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step 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). +[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). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 08:35:10.146208 + +[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. +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-22 08:35:10.888847 + +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-22 08:35:11.239101 + +[36] Log opened at 2024-10-22 08:35:11.285499 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 08:35:12.869679 + +[32] Log opened at 2024-10-22 08:35:19.224370 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-10-22 08:35:20.933951 + +[32] Log opened at 2024-10-22 08:35:21.189890 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-10-22 08:35:21.854926 + +[22] Log opened at 2024-10-22 08:35:22.219371 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] Log opened at 2024-10-22 08:35:22.320860 +[37] Log opened at 2024-10-22 08:35:22.320858 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[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. +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 08:35:23.338694 + +[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. +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 08:35:23.969791 + +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-10-22 08:35:24.329845 + +[24] Log opened at 2024-10-22 08:35:24.381699 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-22 08:35:25.960386 + +[30] Log opened at 2024-10-22 08:44:04.445499 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-22 08:44:20.085191 + +[26] Log opened at 2024-10-22 08:46:14.133001 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-22 08:46:15.811929 + +[26] Log opened at 2024-10-22 08:46:15.973261 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-22 08:46:16.633336 + +[38] Log opened at 2024-10-22 08:46:17.060351 +[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. +[32] Log opened at 2024-10-22 08:46:17.076677 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-10-22 08:46:17.118807 +[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. +[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). +[32] [Step 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] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-10-22 08:46:18.089554 + +[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. +[26] [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-10-22 08:46:18.715498 + +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-22 08:46:19.084208 + +[32] Log opened at 2024-10-22 08:46:19.126650 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-10-22 08:46:20.687530 + +[32] Log opened at 2024-10-22 08:46:20.801615 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-10-22 08:46:35.447602 + +[33] Log opened at 2024-10-22 08:50:58.725951 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 08:50:59.873799 + +[33] Log opened at 2024-10-22 08:51:02.881054 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 08:51:04.033575 + +[33] Log opened at 2024-10-22 08:51:08.621546 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 08:51:25.822350 + +[23] Log opened at 2024-10-22 08:52:01.508911 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 08:52:03.416593 + +[22] Log opened at 2024-10-22 08:52:03.585734 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 08:52:04.235648 + +[37] Log opened at 2024-10-22 08:52:04.594392 +[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. +[22] Log opened at 2024-10-22 08:52:04.626005 +[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] Log opened at 2024-10-22 08:52:04.640037 +[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. +[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). +[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] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 08:52:05.712889 + +[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. +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-10-22 08:52:06.350282 + +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-22 08:52:06.700090 + +[22] Log opened at 2024-10-22 08:52:06.776005 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 08:52:08.278660 + +[22] Log opened at 2024-10-22 08:52:08.433491 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] Log opened at 2024-10-22 08:52:08.517707 +[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. +[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). +[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. +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 08:52:23.588344 + +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-10-22 08:52:23.982639 + +[38] Log opened at 2024-10-22 08:52:37.326730 +[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-10-22 08:52:43.149278 + +[33] Log opened at 2024-10-22 08:54:02.627377 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 11 +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] Log closed at 2024-10-22 08:54:04.032524 + +[33] Log opened at 2024-10-22 08:54:04.185114 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 11 +[33] [Step Debug] -> + +[33] Log closed at 2024-10-22 08:54:04.305552 + +[23] Log opened at 2024-10-22 08:54:04.669999 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[30] Log opened at 2024-10-22 08:54:04.782579 +[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. +[36] Log opened at 2024-10-22 08:54:04.782580 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] -> + +[36] [Step Debug] -> + +[23] [Step Debug] <- run -i 11 +[30] [Step Debug] <- run -i 1 +[36] [Step Debug] <- run -i 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[36] [Step Debug] -> + +[36] Log closed at 2024-10-22 08:54:05.194925 + +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[30] [Step Debug] -> + +[30] Log closed at 2024-10-22 08:54:05.327496 + +[36] Log opened at 2024-10-22 08:54:05.369848 +[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 11 +[23] [Step Debug] -> + +[23] Log closed at 2024-10-22 08:54:05.762062 + +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] Log closed at 2024-10-22 08:54:06.320114 + +[36] Log opened at 2024-10-22 08:54:06.358573 +[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 11 +[23] Log opened at 2024-10-22 08:54:06.491361 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 11 +[36] [Step Debug] -> + +[36] Log closed at 2024-10-22 08:54:06.992710 + +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 12 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 13 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 14 -n "$return_data['errors']->status" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 15 -n "$uso" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 16 -n "$datos_papel" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 17 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 19 +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] Log closed at 2024-10-22 08:54:11.552654 + +[22] Log opened at 2024-10-22 08:54:13.309867 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 11 +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] Log closed at 2024-10-22 08:54:14.528471 + +[37] Log opened at 2024-10-22 08:54:14.749385 +[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. +[37] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[37] [Step Debug] -> + +[37] [Step Debug] <- run -i 11 +[37] [Step Debug] -> + +[37] Log closed at 2024-10-22 08:54:14.969453 + +[26] Log opened at 2024-10-22 08:54:15.365588 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 11 +[37] Log opened at 2024-10-22 08:54:15.513305 +[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. +[37] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[37] [Step Debug] -> + +[33] Log opened at 2024-10-22 08:54:15.525615 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[33] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[33] [Step Debug] -> + +[37] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[33] [Step Debug] -> + +[37] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n max_data -v 8192 +[33] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[33] [Step Debug] <- feature_set -i 5 -n notify_ok -v 1 +[33] [Step Debug] -> + +[37] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[33] [Step Debug] -> + +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[37] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 10 -n extended_properties -v 1 +[33] [Step Debug] -> + +[37] [Step Debug] <- run -i 11 +[33] [Step Debug] <- run -i 11 +[37] [Step Debug] -> + +[37] Log closed at 2024-10-22 08:54:16.013944 + +[26] [Step Debug] -> + +[26] Log closed at 2024-10-22 08:54:16.483637 + +[33] [Step Debug] -> + +[33] Log closed at 2024-10-22 08:54:16.663685 + +[38] Log opened at 2024-10-22 08:54:16.702264 +[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 11 +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] Log closed at 2024-10-22 08:54:17.619523 + +[26] Log opened at 2024-10-22 08:54:17.651993 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 11 +[38] Log opened at 2024-10-22 08:54:17.723053 +[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 11 +[26] [Step Debug] -> + +[26] Log closed at 2024-10-22 08:54:18.257679 + +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 12 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 13 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 14 -n "$return_data['errors']->status" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 15 -n "$uso" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 16 -n "$datos_papel" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 17 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 19 +[38] [Step Debug] -> + +[38] Log closed at 2024-10-22 08:54:37.271132 + +[38] Log opened at 2024-10-22 08:54:41.881322 +[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 11 +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 12 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 13 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 14 -n "$return_data['errors']->status" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 15 -n "$uso" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 16 -n "$datos_papel" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 17 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 19 -n "$reqData" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 20 -n "$tipo_impresion_id" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- step_into -i 21 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 22 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 23 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 24 -n "$return_data['errors']->status" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 25 -n "$uso" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 26 -n "$datos_papel" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 27 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 28 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1452 +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 30 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 31 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 32 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 33 -n "$return_data['errors']->status" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 34 -n "$uso" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 35 -n "$datos_papel" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 36 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 37 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- step_over -i 38 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 39 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 40 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 41 -n "$return_data['errors']->status" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 42 -n "$uso" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 43 -n "$datos_papel" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 44 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 45 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 46 -n "$interior" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_remove -i 47 -d 380016 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 48 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1582 +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 49 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 50 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 51 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 52 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 53 -n "$return_data['errors']->status" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 54 -n "$uso" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 55 -n "$datos_papel" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 56 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 57 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- step_over -i 58 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 59 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 60 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 61 -n "$return_data['errors']->status" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 62 -n "$uso" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 63 -n "$datos_papel" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 64 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 65 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 66 -n "$cubierta" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_remove -i 67 -d 380017 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 68 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1656 +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 69 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 70 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 71 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 72 -n "$return_data['errors']->status" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 73 -n "$uso" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 74 -n "$datos_papel" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 75 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 76 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- step_over -i 77 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 78 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 79 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 80 -n "$return_data['errors']->status" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 81 -n "$uso" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 82 -n "$datos_papel" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 83 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 84 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_remove -i 85 -d 380018 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 86 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1671 +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 87 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 88 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 89 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 90 -n "$return_data['errors']->status" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 91 -n "$uso" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 92 -n "$datos_papel" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 93 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 94 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_remove -i 95 -d 380019 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 96 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1743 +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 97 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 98 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 99 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 100 -n "$return_data['errors']->status" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 101 -n "$uso" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 102 -n "$datos_papel" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 103 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 104 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- step_over -i 105 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 106 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 107 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 108 -n "$return_data['errors']->status" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 109 -n "$uso" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 110 -n "$datos_papel" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 111 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 112 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_remove -i 113 -d 380020 +[38] [Step Debug] -> + +[38] [Step Debug] <- step_over -i 114 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 115 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 116 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 117 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 118 -n "$return_data['errors']->status" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 119 -n "$uso" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 120 -n "$datos_papel" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 121 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 122 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- step_over -i 123 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 124 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 125 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 126 -n "$return_data['errors']->status" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 127 -n "$uso" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 128 -n "$datos_papel" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 129 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 130 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- step_over -i 131 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 132 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 133 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 134 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 135 -n "$return_data['errors']->status" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 136 -n "$uso" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 137 -n "$datos_papel" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 138 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 139 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- step_over -i 140 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 141 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 142 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 143 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 144 -n "$return_data['errors']->status" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 145 -n "$uso" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 146 -n "$datos_papel" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 147 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 148 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- step_over -i 149 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 150 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 151 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 152 -n "$return_data['errors']->status" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 153 -n "$uso" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 154 -n "$datos_papel" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 155 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 156 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- step_over -i 157 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 158 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 159 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 160 -n "$return_data['errors']->status" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 161 -n "$uso" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 162 -n "$datos_papel" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 163 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 164 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 165 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 166 +[38] [Step Debug] -> + +[38] Log closed at 2024-10-22 08:56:32.947504 + +[30] Log opened at 2024-10-22 08:56:41.153889 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[30] [Step Debug] -> + +[30] [Step Debug] <- run -i 13 +[30] [Step Debug] -> + +[30] [Step Debug] -> + +[30] [Step Debug] -> + +[30] [Step Debug] -> + +[30] [Step Debug] -> + +[30] [Step Debug] <- stack_get -i 14 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 15 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 16 -n "$return_data['errors']->status" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 17 -n "$uso" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 18 -n "$datos_papel" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_names -i 19 -d 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_get -i 20 -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- run -i 21 +[30] [Step Debug] -> + +[30] [Step Debug] <- stack_get -i 22 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 23 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 24 -n "$return_data['errors']->status" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 25 -n "$uso" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 26 -n "$datos_papel" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_names -i 27 -d 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_get -i 28 -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- step_over -i 29 +[30] [Step Debug] -> + +[30] [Step Debug] <- stack_get -i 30 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 31 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 32 -n "$return_data['errors']->status" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 33 -n "$uso" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 34 -n "$datos_papel" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_names -i 35 -d 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_get -i 36 -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- step_over -i 37 +[30] [Step Debug] -> + +[30] [Step Debug] <- stack_get -i 38 +[30] [Step Debug] -> + +[30] [Step Debug] <- stack_get -i 39 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 40 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 41 -n "$return_data['errors']->status" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 42 -n "$uso" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 43 -n "$datos_papel" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_names -i 44 -d 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_get -i 45 -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- step_over -i 46 +[30] [Step Debug] -> + +[30] [Step Debug] <- stack_get -i 47 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 48 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 49 -n "$return_data['errors']->status" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 50 -n "$uso" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 51 -n "$datos_papel" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_names -i 52 -d 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_get -i 53 -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- step_over -i 54 +[30] [Step Debug] -> + +[30] [Step Debug] <- stack_get -i 55 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 56 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 57 -n "$return_data['errors']->status" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 58 -n "$uso" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 59 -n "$datos_papel" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_names -i 60 -d 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_get -i 61 -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- step_over -i 62 +[30] [Step Debug] -> + +[30] [Step Debug] <- stack_get -i 63 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 64 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 65 -n "$return_data['errors']->status" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 66 -n "$uso" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 67 -n "$datos_papel" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_names -i 68 -d 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_get -i 69 -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- step_over -i 70 +[30] [Step Debug] -> + +[30] [Step Debug] <- stack_get -i 71 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 72 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 73 -n "$return_data['errors']->status" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 74 -n "$uso" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 75 -n "$datos_papel" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_names -i 76 -d 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_get -i 77 -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- step_over -i 78 +[30] [Step Debug] -> + +[30] [Step Debug] <- stack_get -i 79 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 80 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 81 -n "$return_data['errors']->status" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 82 -n "$uso" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 83 -n "$datos_papel" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_names -i 84 -d 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_get -i 85 -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- step_over -i 86 +[30] [Step Debug] -> + +[30] [Step Debug] <- stack_get -i 87 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 88 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 89 -n "$return_data['errors']->status" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 90 -n "$uso" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 91 -n "$datos_papel" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_names -i 92 -d 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_get -i 93 -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- step_over -i 94 +[30] [Step Debug] -> + +[30] [Step Debug] <- stack_get -i 95 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 96 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 97 -n "$return_data['errors']->status" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 98 -n "$uso" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 99 -n "$datos_papel" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_names -i 100 -d 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_get -i 101 -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- step_over -i 102 +[30] [Step Debug] -> + +[30] [Step Debug] <- stack_get -i 103 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 104 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 105 -n "$return_data['errors']->status" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 106 -n "$uso" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 107 -n "$datos_papel" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_names -i 108 -d 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_get -i 109 -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- step_over -i 110 +[30] [Step Debug] -> + +[30] [Step Debug] <- stack_get -i 111 +[30] [Step Debug] -> + +[30] [Step Debug] <- stack_get -i 112 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 113 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 114 -n "$return_data['errors']->status" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 115 -n "$uso" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 116 -n "$datos_papel" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_names -i 117 -d 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_get -i 118 -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- step_over -i 119 +[30] [Step Debug] -> + +[30] [Step Debug] <- stack_get -i 120 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 121 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 122 -n "$return_data['errors']->status" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 123 -n "$uso" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 124 -n "$datos_papel" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_names -i 125 -d 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_get -i 126 -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- run -i 127 +[30] [Step Debug] -> + +[30] Log closed at 2024-10-22 08:57:10.087117 + +[23] Log opened at 2024-10-22 08:58:12.505431 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 13 +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] Log closed at 2024-10-22 08:58:13.787754 + +[39] Log opened at 2024-10-22 08:58:14.019420 +[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 13 +[39] [Step Debug] -> + +[39] Log closed at 2024-10-22 08:58:14.191820 + +[33] Log opened at 2024-10-22 08:58:14.955990 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 13 +[32] Log opened at 2024-10-22 08:58:15.082129 +[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-10-22 08:58:15.083528 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] -> + +[37] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[32] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[37] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[32] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[37] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[37] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[37] [Step Debug] -> + +[32] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[37] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[32] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[37] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[32] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[37] [Step Debug] -> + +[32] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[32] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[32] [Step Debug] -> + +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[37] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[37] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[37] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[37] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[37] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[37] [Step Debug] -> + +[37] [Step Debug] <- run -i 13 +[32] [Step Debug] <- run -i 13 +[22] Log opened at 2024-10-22 08:58:15.416336 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 13 +[32] [Step Debug] -> + +[32] Log closed at 2024-10-22 08:58:15.647922 + +[33] [Step Debug] -> + +[33] Log closed at 2024-10-22 08:58:16.063301 + +[37] [Step Debug] -> + +[37] Log closed at 2024-10-22 08:58:16.201130 + +[33] Log opened at 2024-10-22 08:58:16.295751 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 13 +[22] [Step Debug] -> + +[22] Log closed at 2024-10-22 08:58:16.467849 + +[22] Log opened at 2024-10-22 08:58:16.533375 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 13 +[22] [Step Debug] -> + +[22] Log closed at 2024-10-22 08:58:16.675150 + +[22] Log opened at 2024-10-22 08:58:16.776959 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[22] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[32] Log opened at 2024-10-22 08:58:16.788533 +[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] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[22] [Step Debug] -> + +[32] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[32] [Step Debug] <- breakpoint_set -i 1 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[22] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Parse error" +[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[32] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 8 -n extended_properties -v 1 +[32] [Step Debug] -> + +[22] [Step Debug] <- run -i 13 +[32] [Step Debug] <- run -i 9 +[37] Log opened at 2024-10-22 08:58:16.875358 +[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. +[37] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- run -i 6 +[33] [Step Debug] -> + +[33] Log closed at 2024-10-22 08:58:17.387296 + +[33] Log opened at 2024-10-22 08:58:17.551386 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[32] [Step Debug] -> + +[32] Log closed at 2024-10-22 08:58:17.657191 + +[22] [Step Debug] -> + +[22] Log closed at 2024-10-22 08:58:18.049089 + +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[37] [Step Debug] -> + +[37] Log closed at 2024-10-22 08:58:18.286566 + +[22] Log opened at 2024-10-22 08:58:20.168880 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 13 +[33] [Step Debug] <- run -i 13 +[33] [Step Debug] -> + +[33] Log closed at 2024-10-22 08:58:20.769281 + +[22] [Step Debug] -> + +[22] Log closed at 2024-10-22 08:58:20.992341 + +[33] Log opened at 2024-10-22 08:58:22.943642 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 13 +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 14 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 15 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 16 -n "$return_data['errors']->status" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 17 -n "$uso" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 18 -n "$datos_papel" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 19 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 20 -d 0 -c 0 +[33] [Step Debug] -> + +[22] Log opened at 2024-10-22 08:58:24.580348 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 13 +[26] Log opened at 2024-10-22 08:58:27.764139 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 13 +[33] [Step Debug] <- run -i 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 22 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 23 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 24 -n "$return_data['errors']->status" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 25 -n "$uso" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 26 -n "$datos_papel" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 27 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 28 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 29 +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 30 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 31 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 32 -n "$return_data['errors']->status" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 33 -n "$uso" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 34 -n "$datos_papel" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 35 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 36 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 37 +[30] Log opened at 2024-10-22 08:58:45.746276 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[30] [Step Debug] -> + +[30] [Step Debug] <- run -i 13 +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 38 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 39 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 40 -n "$return_data['errors']->status" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 41 -n "$uso" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 42 -n "$datos_papel" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 43 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 44 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 45 +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 46 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 47 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 48 -n "$return_data['errors']->status" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 49 -n "$uso" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 50 -n "$datos_papel" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 51 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 52 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 53 +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 54 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 55 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 56 -n "$return_data['errors']->status" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 57 -n "$uso" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 58 -n "$datos_papel" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 59 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 60 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 61 +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 62 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 63 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 64 -n "$return_data['errors']->status" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 65 -n "$uso" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 66 -n "$datos_papel" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 67 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 68 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 69 +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 70 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 71 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 72 -n "$return_data['errors']->status" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 73 -n "$uso" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 74 -n "$datos_papel" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 75 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 76 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 77 +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 78 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 79 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 80 -n "$return_data['errors']->status" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 81 -n "$uso" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 82 -n "$datos_papel" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 83 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 84 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 85 +[33] [Step Debug] -> + +[33] Log closed at 2024-10-22 08:59:01.811913 + +[22] [Step Debug] -> + +[22] Log closed at 2024-10-22 08:59:02.126344 + +[26] [Step Debug] -> + +[26] Log closed at 2024-10-22 08:59:02.426869 + +[30] [Step Debug] -> + +[30] Log closed at 2024-10-22 08:59:02.688540 + +[33] Log opened at 2024-10-22 08:59:02.757544 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 13 +[33] [Step Debug] -> + +[33] Log closed at 2024-10-22 08:59:02.872584 + +[33] Log opened at 2024-10-22 08:59:02.959483 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[30] Log opened at 2024-10-22 08:59:02.965385 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[30] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[30] [Step Debug] -> + +[33] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[30] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[33] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[30] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 13 +[30] [Step Debug] <- run -i 13 +[40] Log opened at 2024-10-22 08:59:03.064967 +[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[40] [Step Debug] <- run -i 13 +[30] [Step Debug] -> + +[30] Log closed at 2024-10-22 08:59:03.418817 + +[33] [Step Debug] -> + +[33] Log closed at 2024-10-22 08:59:03.821886 + +[40] [Step Debug] -> + +[40] Log closed at 2024-10-22 08:59:04.060391 + +[33] Log opened at 2024-10-22 08:59:07.864232 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 13 +[33] [Step Debug] -> + +[33] Log closed at 2024-10-22 08:59:08.590877 + +[33] Log opened at 2024-10-22 08:59:10.487419 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 13 +[33] [Step Debug] -> + +[33] Log closed at 2024-10-22 08:59:11.110350 + +[33] Log opened at 2024-10-22 08:59:11.171417 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 13 +[33] [Step Debug] -> + +[33] Log closed at 2024-10-22 08:59:11.285560 + +[33] Log opened at 2024-10-22 08:59:11.375726 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[33] [Step Debug] -> + +[39] Log opened at 2024-10-22 08:59:11.386627 +[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[33] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[39] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[33] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[39] [Step Debug] -> + +[33] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 6 -n max_data -v 8192 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 7 -n notify_ok -v 1 +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[39] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[39] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[33] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 12 -n extended_properties -v 1 +[39] [Step Debug] -> + +[33] [Step Debug] <- run -i 13 +[39] [Step Debug] <- run -i 13 +[23] Log opened at 2024-10-22 08:59:11.440381 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 6 +[39] [Step Debug] -> + +[39] Log closed at 2024-10-22 08:59:11.799608 + +[33] [Step Debug] -> + +[33] Log closed at 2024-10-22 08:59:12.289863 + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[23] [Step Debug] -> + +[23] Log closed at 2024-10-22 08:59:12.456278 + +[38] Log opened at 2024-10-22 08:59:47.766426 +[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 13 +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 14 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 15 -n "$datosPedido->anchoExteriores" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 16 -n "$return_data['errors']->status" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 17 -n "$uso" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 18 -n "$datos_papel" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 19 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 20 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 21 +[38] [Step Debug] -> + +[38] [Step Debug] <- stop -i 22 +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] Log closed at 2024-10-22 08:59:54.866090 + +[36] Log opened at 2024-10-22 09:00:00.629051 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 09:00:15.275538 + +[22] Log opened at 2024-10-22 09:00:28.234865 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 09:00:33.090671 + +[26] Log opened at 2024-10-22 09:00:43.223827 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-22 09:00:48.687801 + +[26] Log opened at 2024-10-22 09:00:51.690192 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-22 09:00:53.455213 + +[26] Log opened at 2024-10-22 09:00:53.575527 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-22 09:00:54.219047 + +[30] Log opened at 2024-10-22 09:00:54.600424 +[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. +[39] Log opened at 2024-10-22 09:00:54.605930 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[40] Log opened at 2024-10-22 09:00:54.605920 +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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. +[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). +[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). +[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). +[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. +[39] [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-10-22 09:00:55.592837 + +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-10-22 09:00:55.916981 + +[40] Log opened at 2024-10-22 09:00:55.964861 +[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). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-22 09:00:56.584052 + +[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-10-22 09:00:57.683950 + +[40] Log opened at 2024-10-22 09:00:57.771318 +[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-10-22 09:01:03.046007 + +[37] Log opened at 2024-10-22 09:01:13.502780 +[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. +[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] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-10-22 09:01:18.715684 + +[38] Log opened at 2024-10-22 09:01:28.687906 +[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-10-22 09:01:33.923687 + +[22] Log opened at 2024-10-22 09:01:57.587697 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 09:01:59.323318 + +[22] Log opened at 2024-10-22 09:01:59.549154 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 09:02:00.247157 + +[23] Log opened at 2024-10-22 09:02:00.626370 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] Log opened at 2024-10-22 09:02:00.737748 +[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. +[39] Log opened at 2024-10-22 09:02:00.741085 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[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). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 09:02:01.733188 + +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 09:02:02.313900 + +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-10-22 09:02:02.668832 + +[26] Log opened at 2024-10-22 09:02:02.707431 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-22 09:02:04.287637 + +[23] Log opened at 2024-10-22 09:02:04.395204 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 09:02:09.265780 + +[37] Log opened at 2024-10-22 09:02:20.702844 +[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. +[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] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-10-22 09:02:26.014236 + +[36] Log opened at 2024-10-22 09:03:19.320058 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 09:03:20.570220 + +[36] Log opened at 2024-10-22 09:03:20.638119 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 09:03:21.285763 + +[30] Log opened at 2024-10-22 09:03:21.386216 +[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. +[41] Log opened at 2024-10-22 09:03:21.402401 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-10-22 09:03:21.486247 +[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. +[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). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 09:03:22.337671 + +[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-10-22 09:03:22.974008 + +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 09:03:23.341487 + +[23] Log opened at 2024-10-22 09:03:32.203647 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 09:03:33.324093 + +[37] Log opened at 2024-10-22 09:03:33.393944 +[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. +[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] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-10-22 09:03:34.043292 + +[37] Log opened at 2024-10-22 09:03:34.115037 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] Log opened at 2024-10-22 09:03:34.121559 +[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. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 09:03:35.050088 + +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-10-22 09:03:35.686827 + +[23] Log opened at 2024-10-22 09:03:37.520128 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 09:03:38.702926 + +[37] Log opened at 2024-10-22 09:03:38.762889 +[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. +[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] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-10-22 09:03:39.403721 + +[37] Log opened at 2024-10-22 09:03:39.495852 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] Log opened at 2024-10-22 09:03:39.499770 +[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. +[38] Log opened at 2024-10-22 09:03:39.569745 +[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] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 09:03:40.472587 + +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-10-22 09:03:41.062436 + +[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-10-22 09:03:41.474634 + +[23] Log opened at 2024-10-22 09:03:43.717367 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 09:03:44.873890 + +[42] Log opened at 2024-10-22 09:03:52.500194 +[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-10-22 09:03:58.064237 + +[42] Log opened at 2024-10-22 09:04:02.053642 +[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-10-22 09:04:03.259963 + +[42] Log opened at 2024-10-22 09:04:03.313985 +[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-10-22 09:04:03.956700 + +[36] Log opened at 2024-10-22 09:04:04.041858 +[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-10-22 09:04:04.050157 +[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. +[33] Log opened at 2024-10-22 09:04:04.120808 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[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). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-10-22 09:04:05.008333 + +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 09:04:05.703783 + +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 09:04:06.174905 + +[33] Log opened at 2024-10-22 09:04:11.127136 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 09:04:12.329859 + +[33] Log opened at 2024-10-22 09:04:12.420020 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 09:04:13.062393 + +[33] Log opened at 2024-10-22 09:04:13.156716 +[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. +[41] Log opened at 2024-10-22 09:04:13.166478 +[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. +[30] Log opened at 2024-10-22 09:04:13.216365 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step 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). +[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). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 09:04:14.093485 + +[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. +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 09:04:14.674134 + +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-22 09:04:15.040332 + +[23] Log opened at 2024-10-22 09:04:34.860734 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 09:04:39.534261 + +[42] Log opened at 2024-10-22 09:04:44.868901 +[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-10-22 09:04:45.991910 + +[42] Log opened at 2024-10-22 09:04:46.198542 +[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. +[39] Log opened at 2024-10-22 09:04:46.203863 +[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. +[36] Log opened at 2024-10-22 09:04:46.266729 +[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. +[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). +[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] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-10-22 09:04:47.144144 + +[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-10-22 09:04:47.802326 + +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 09:04:48.211999 + +[39] Log opened at 2024-10-22 09:04:50.116853 +[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-10-22 09:04:51.270563 + +[39] Log opened at 2024-10-22 09:04:55.174734 +[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-10-22 09:04:56.361000 + +[39] Log opened at 2024-10-22 09:04:56.420149 +[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-10-22 09:04:57.061829 + +[39] Log opened at 2024-10-22 09:04:57.162239 +[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. +[22] Log opened at 2024-10-22 09:04:57.168325 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] Log opened at 2024-10-22 09:04:57.215125 +[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. +[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). +[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). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 09:04:58.100576 + +[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. +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-10-22 09:04:58.710678 + +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-10-22 09:04:59.090993 + +[38] Log opened at 2024-10-22 09:05:08.981471 +[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-10-22 09:05:10.246944 + +[41] Log opened at 2024-10-22 09:05:10.319108 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 09:05:10.958855 + +[41] Log opened at 2024-10-22 09:05:11.134494 +[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-10-22 09:05:11.137626 +[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. +[33] Log opened at 2024-10-22 09:05:11.229027 +[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. +[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). +[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). +[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-10-22 09:05:12.091829 + +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 09:05:12.739353 + +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 09:05:13.217779 + +[33] Log opened at 2024-10-22 09:05:17.655459 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 09:05:18.562475 + +[33] Log opened at 2024-10-22 09:05:18.684987 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 09:05:19.591395 + +[33] Log opened at 2024-10-22 09:05:19.778627 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] Log opened at 2024-10-22 09:05:20.407328 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step 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. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 09:05:20.692572 + +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 09:05:21.326756 + +[33] Log opened at 2024-10-22 09:05:21.424203 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 09:05:22.335731 + +[42] Log opened at 2024-10-22 09:05:37.215272 +[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-10-22 09:05:38.544334 + +[36] Log opened at 2024-10-22 09:05:38.602804 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 09:05:39.244709 + +[36] Log opened at 2024-10-22 09:05:39.373982 +[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. +[42] Log opened at 2024-10-22 09:05:39.387682 +[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. +[22] Log opened at 2024-10-22 09:05:39.519179 +[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. +[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). +[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). +[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). +[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-10-22 09:05:40.322431 + +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 09:05:40.908625 + +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 09:05:41.326203 + +[30] Log opened at 2024-10-22 09:08:51.128347 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-22 09:08:52.347433 + +[30] Log opened at 2024-10-22 09:08:52.428772 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-22 09:08:53.071791 + +[38] Log opened at 2024-10-22 09:08:53.175381 +[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. +[41] Log opened at 2024-10-22 09:08:53.180213 +[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. +[30] Log opened at 2024-10-22 09:08:53.283272 +[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. +[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] 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). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 09:08:54.110579 + +[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-10-22 09:08:54.770915 + +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-22 09:08:55.204054 + +[23] Log opened at 2024-10-22 09:09:01.878737 +[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). +[33] Log opened at 2024-10-22 09:09:02.610640 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [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). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 09:09:03.161136 + +[42] Log opened at 2024-10-22 09:09:03.231000 +[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. +[23] Log opened at 2024-10-22 09:09:03.376905 +[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. +[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. +[33] [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). +[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. +[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. +[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-10-22 09:09:03.877517 + +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 09:09:03.962719 + +[33] Log opened at 2024-10-22 09:09:04.044008 +[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. +[42] Log opened at 2024-10-22 09:09:04.046521 +[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-10-22 09:09:04.145429 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-10-22 09:09:04.145847 +[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. +[39] Log opened at 2024-10-22 09:09:04.199626 +[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. +[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). +[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). +[23] [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. +[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). +[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). +[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). +[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. +[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. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 09:09:04.686291 + +[23] Log opened at 2024-10-22 09:09:04.705336 +[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. +[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-10-22 09:09:04.710398 + +[42] Log opened at 2024-10-22 09:09:04.773529 +[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. +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[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. +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 09:09:05.186612 + +[22] Log opened at 2024-10-22 09:09:05.189890 +[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. +[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. +[33] [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). +[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-10-22 09:09:05.427149 + +[42] Log opened at 2024-10-22 09:09:05.429302 +[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. +[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. +[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). +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 09:09:05.782087 + +[33] Log opened at 2024-10-22 09:09:05.784920 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 09:09:06.434868 + +[36] Log opened at 2024-10-22 09:09:06.436654 +[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] 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). +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-10-22 09:09:06.887453 + +[39] Log opened at 2024-10-22 09:09:06.889208 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] 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). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 09:09:07.432404 + +[23] Log opened at 2024-10-22 09:09:07.434896 +[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. +[42] [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). +[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-10-22 09:09:07.882620 + +[42] Log opened at 2024-10-22 09:09:07.885459 +[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). +[22] [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. +[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. +[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. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 09:09:08.525898 + +[22] Log opened at 2024-10-22 09:09:08.527471 +[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. +[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-10-22 09:09:08.535916 + +[33] [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). +[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. +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] Log opened at 2024-10-22 09:09:08.893881 +[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. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 09:09:08.953146 + +[33] Log opened at 2024-10-22 09:09:08.954896 +[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. +[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. +[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). +[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). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 09:09:09.172567 + +[22] Log opened at 2024-10-22 09:09:09.174452 +[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. +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 09:09:09.594298 + +[36] Log opened at 2024-10-22 09:09:09.596614 +[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] 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). +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-10-22 09:09:10.103382 + +[39] Log opened at 2024-10-22 09:09:10.106337 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] 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). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 09:09:10.552214 + +[23] Log opened at 2024-10-22 09:09:10.554134 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [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). +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 09:09:10.988929 + +[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-10-22 09:09:11.576518 + +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 09:09:12.005042 + +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 09:09:12.601624 + +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-10-22 09:09:13.038675 + +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 09:09:13.521760 + +[38] Log opened at 2024-10-22 09:09:29.405535 +[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-10-22 09:09:31.263423 + +[38] Log opened at 2024-10-22 09:09:31.349558 +[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. +[30] Log opened at 2024-10-22 09:09:31.352572 +[43] Log opened at 2024-10-22 09:09:31.353329 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[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. +[43] [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). +[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). +[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). +[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-10-22 09:09:32.003127 + +[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. +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-22 09:09:32.484159 + +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-10-22 09:09:32.835700 + +[42] Log opened at 2024-10-22 09:09:32.850626 +[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. +[30] Log opened at 2024-10-22 09:09:32.854596 +[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. +[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). +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-22 09:09:33.793848 + +[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-10-22 09:09:34.408642 + +[36] Log opened at 2024-10-22 09:09:40.767616 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 09:09:42.712417 + +[36] Log opened at 2024-10-22 09:09:42.781141 +[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-10-22 09:09:42.784774 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] Log opened at 2024-10-22 09:09:42.786040 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step 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). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 09:09:43.433682 + +[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. +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-10-22 09:09:43.887404 + +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 09:09:44.232746 + +[39] Log opened at 2024-10-22 09:09:44.253690 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] Log opened at 2024-10-22 09:09:44.259400 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 09:09:45.197685 + +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-10-22 09:09:45.798393 + +[23] Log opened at 2024-10-22 09:09:46.926178 +[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. +[39] Log opened at 2024-10-22 09:09:48.748376 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 09:09:48.872928 + +[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). +[23] Log opened at 2024-10-22 09:09:48.952073 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] Log opened at 2024-10-22 09:09:48.958234 +[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. +[22] Log opened at 2024-10-22 09:09:48.958238 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 09:09:49.600169 + +[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. +[23] Log opened at 2024-10-22 09:09:50.665869 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-10-22 09:09:50.779311 + +[39] Log opened at 2024-10-22 09:09:50.865393 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] Log opened at 2024-10-22 09:09:50.873674 +[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. +[43] Log opened at 2024-10-22 09:09:50.874348 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step 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. +[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). +[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). +[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. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 09:09:51.148974 + +[22] [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. +[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. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-10-22 09:09:51.519475 + +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 09:09:51.614892 + +[39] Log opened at 2024-10-22 09:09:51.657740 +[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. +[22] Log opened at 2024-10-22 09:09:51.661755 +[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. +[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). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 09:09:52.898801 + +[23] Log opened at 2024-10-22 09:09:52.961627 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] Log opened at 2024-10-22 09:09:52.964251 +[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. +[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. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-10-22 09:09:53.258944 + +[43] Log opened at 2024-10-22 09:09:53.261731 +[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. +[38] [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. +[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). +[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. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 09:09:53.613217 + +[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-10-22 09:09:53.709652 + +[23] Log opened at 2024-10-22 09:09:53.761935 +[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. +[38] Log opened at 2024-10-22 09:09:53.770999 +[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. +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 09:09:54.238776 + +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-10-22 09:09:54.892559 + +[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. +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 09:09:55.315057 + +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-10-22 09:09:55.643625 + +[22] Log opened at 2024-10-22 09:09:55.689719 +[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. +[39] Log opened at 2024-10-22 09:09:55.695048 +[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. +[38] [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). +[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). +[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-10-22 09:09:56.113527 + +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 09:09:56.716269 + +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-10-22 09:09:57.195143 + +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 09:09:57.824509 + +[42] Log opened at 2024-10-22 09:10:15.277894 +[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-10-22 09:10:17.182231 + +[42] Log opened at 2024-10-22 09:10:17.273138 +[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-10-22 09:10:17.277834 +[41] Log opened at 2024-10-22 09:10:17.277834 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[41] [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. +[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). +[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). +[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). +[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-10-22 09:10:17.936217 + +[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. +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 09:10:18.370451 + +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 09:10:18.706404 + +[41] Log opened at 2024-10-22 09:10:18.722847 +[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. +[36] Log opened at 2024-10-22 09:10:18.728106 +[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. +[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). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 09:10:19.689865 + +[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. +[36] Log opened at 2024-10-22 09:10:20.292599 +[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. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 09:10:20.300799 + +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 09:10:21.472026 + +[36] Log opened at 2024-10-22 09:10:24.506831 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 09:10:25.590028 + +[36] Log opened at 2024-10-22 09:10:25.601597 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 09:10:28.837416 + +[36] Log opened at 2024-10-22 09:10:28.881767 +[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. +[38] Log opened at 2024-10-22 09:10:28.935520 +[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. +[23] Log opened at 2024-10-22 09:10:28.936045 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] Log opened at 2024-10-22 09:10:28.937239 +[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. +[33] Log opened at 2024-10-22 09:10:28.937347 +[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. +[22] Log opened at 2024-10-22 09:10:28.937341 +[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. +[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. +[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). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[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). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 09:10:29.536731 + +[36] Log opened at 2024-10-22 09:10:29.538550 +[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. +[23] [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). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 09:10:29.993501 + +[23] Log opened at 2024-10-22 09:10:29.995966 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step 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. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-10-22 09:10:30.337316 + +[39] Log opened at 2024-10-22 09:10:30.339391 +[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. +[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. +[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). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 09:10:30.694706 + +[33] Log opened at 2024-10-22 09:10:30.696752 +[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. +[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. +[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). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 09:10:31.083026 + +[22] Log opened at 2024-10-22 09:10:31.085321 +[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. +[38] [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). +[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. +[36] [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-10-22 09:10:31.517550 + +[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. +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 09:10:31.881332 + +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 09:10:32.228349 + +[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. +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-10-22 09:10:32.576383 + +[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. +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 09:10:32.921079 + +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 09:10:33.253726 + +[36] Log opened at 2024-10-22 09:10:33.454341 +[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-10-22 09:10:33.466008 +[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. +[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] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-10-22 09:10:34.522157 + +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] Log opened at 2024-10-22 09:10:34.830638 +[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. +[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] 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] Log closed at 2024-10-22 09:10:35.150480 + +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-10-22 09:10:36.006951 + +[36] Log opened at 2024-10-22 09:10:36.094191 +[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-10-22 09:10:36.111997 +[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. +[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). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 09:10:37.422571 + +[22] Log opened at 2024-10-22 09:10:37.435451 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[33] Log opened at 2024-10-22 09:10:37.435451 +[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. +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] Log opened at 2024-10-22 09:10:37.435451 +[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] 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). +[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). +[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] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-10-22 09:10:37.844719 + +[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. +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 09:10:38.457076 + +[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. +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-22 09:10:38.824162 + +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 09:10:39.217425 + +[41] Log opened at 2024-10-22 09:18:19.840470 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 09:18:21.704401 + +[41] Log opened at 2024-10-22 09:18:21.981076 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 09:18:22.640147 + +[39] Log opened at 2024-10-22 09:18:23.079864 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] Log opened at 2024-10-22 09:18:23.107690 +[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. +[45] Log opened at 2024-10-22 09:18:23.108034 +[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] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 09:18:24.072952 + +[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-10-22 09:18:24.713650 + +[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-10-22 09:18:25.050810 + +[33] Log opened at 2024-10-22 09:18:25.093578 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 09:18:26.574332 + +[39] Log opened at 2024-10-22 09:18:26.659010 +[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-10-22 09:18:31.647938 + +[39] Log opened at 2024-10-22 09:18:34.436505 +[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-10-22 09:18:39.082854 + +[39] Log opened at 2024-10-22 09:18:43.225731 +[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-10-22 09:18:48.270704 + +[43] Log opened at 2024-10-22 09:19:32.667748 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-10-22 09:19:34.413422 + +[43] Log opened at 2024-10-22 09:19:34.618120 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-10-22 09:19:35.278530 + +[42] Log opened at 2024-10-22 09:19:35.632052 +[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] Log opened at 2024-10-22 09:19:35.736478 +[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-10-22 09:19:35.737475 +[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] [Step 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). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 09:19:36.730313 + +[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. +[38] [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-10-22 09:19:37.399264 + +[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-10-22 09:19:37.741413 + +[23] Log opened at 2024-10-22 09:19:37.781329 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 09:19:39.369807 + +[42] Log opened at 2024-10-22 09:19:39.470057 +[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-10-22 09:19:44.456202 + +[39] Log opened at 2024-10-22 09:20:01.784735 +[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-10-22 09:20:03.499763 + +[39] Log opened at 2024-10-22 09:20:03.701598 +[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-10-22 09:20:04.368344 + +[47] Log opened at 2024-10-22 09:20:04.725217 +[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. +[41] Log opened at 2024-10-22 09:20:04.807661 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[46] Log opened at 2024-10-22 09:20:04.807847 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-22 09:20:05.760442 + +[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. +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-22 09:20:06.408501 + +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-22 09:20:06.754435 + +[22] Log opened at 2024-10-22 09:20:06.844637 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-22 09:20:08.366072 + +[23] Log opened at 2024-10-22 09:20:14.091482 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 09:20:15.244753 + +[42] Log opened at 2024-10-22 09:20:15.269595 +[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). +[23] Log opened at 2024-10-22 09:20:15.558449 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] Log opened at 2024-10-22 09:20:15.567997 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step 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). +[48] Log opened at 2024-10-22 09:20:16.619795 +[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). +[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-10-22 09:20:19.897041 + +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 09:20:20.336017 + +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-22 09:20:20.968995 + +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] Log closed at 2024-10-22 09:20:21.404810 + +[33] Log opened at 2024-10-22 09:20:23.196940 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 09:20:27.834680 + +[33] Log opened at 2024-10-22 09:20:32.097343 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-22 09:20:36.754414 + +[39] Log opened at 2024-10-22 09:20:47.488079 +[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-10-22 09:20:48.602515 + +[39] Log opened at 2024-10-22 09:20:51.793057 +[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-10-22 09:20:52.957511 + +[39] Log opened at 2024-10-22 09:20:53.028272 +[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-10-22 09:20:53.670275 + +[43] Log opened at 2024-10-22 09:20:53.762540 +[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. +[46] Log opened at 2024-10-22 09:20:53.770751 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] Log opened at 2024-10-22 09:20:53.821244 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[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). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-22 09:20:54.696755 + +[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. +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-10-22 09:20:55.361739 + +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-10-22 09:20:55.745439 +