From 8135e635abe3eb2446d31f2b93017c39ad3e0741 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Jim=C3=A9nez?= Date: Sat, 19 Oct 2024 10:38:13 +0200 Subject: [PATCH 1/7] errores presupuesto --- .../Presupuestos/Presupuestocliente.php | 27 +- .../Services/PresupuestoClienteService.php | 9 +- .../presupuestoCliente/presupuestoCliente.js | 10 +- .../pages/presupuestoCliente/resumen.js | 2 +- xdebug.log | 1752 +++++++++++++++++ 5 files changed, 1793 insertions(+), 7 deletions(-) diff --git a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php index 6fc12fa2..513ae1b4 100755 --- a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php +++ b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php @@ -17,6 +17,7 @@ use App\Models\Presupuestos\PresupuestoManipuladosModel; use App\Models\Presupuestos\PresupuestoModel; use App\Models\Presupuestos\PresupuestoPreimpresionesModel; use App\Models\Presupuestos\PresupuestoServiciosExtraModel; +use App\Models\Presupuestos\ErrorPresupuesto; use App\Services\PresupuestoClienteService; use App\Services\PresupuestoService; use Exception; @@ -294,6 +295,8 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $modelPapelGenerico = new PapelGenericoModel(); + $id = $reqData['id'] ?? 0; + $cliente_id = $reqData['clienteId'] ?? -1; $tirada = $reqData['tirada'] ?? 0; @@ -372,6 +375,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $datos_guardas = false; $datos_presupuesto = array( + 'id' => $id, 'tirada' => $tirada, 'tamanio' => $tamanio, 'tipo_impresion_id' => $tipo_impresion_id, @@ -1421,6 +1425,16 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $interior = PresupuestoClienteService::obtenerInterior($input_data); + if ($interior == -1) { + $errorModel = new ErrorPresupuesto(); + $errorModel->insertError($datos_entrada['id'], auth()->user()->id, 'No se puede obtener el interior', $input_data); + $return_data = [ + 'errors' => (object)([ + 'status' => 1 + ]), + ]; + } + $costeInterior = 0.0; $peso_interior = 0.0; foreach ($interior as $linea) { @@ -1441,9 +1455,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController } } - if ($costeInterior <= 0) { - $error->interior = lang('Presupuestos.errores.noInterior'); - } + // Si es POD hay que volver a calcular para incluir la merma correcta if ($tirada[$t] <= $POD) { @@ -1459,6 +1471,15 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $info['merma'] = max($info['merma'], $input_data['datosPedido']->merma); } $interior = PresupuestoClienteService::obtenerInterior($input_data); + if ($interior == -1) { + $errorModel = new ErrorPresupuesto(); + $errorModel->insertError($datos_entrada['id'], auth()->user()->id, 'No se puede obtener el interior', $input_data); + $return_data = [ + 'errors' => (object)([ + 'status' => 1 + ]), + ]; + } $costeInterior = 0.0; $peso_interior = 0.0; diff --git a/ci4/app/Services/PresupuestoClienteService.php b/ci4/app/Services/PresupuestoClienteService.php index c02f8ba8..1dc5deb6 100644 --- a/ci4/app/Services/PresupuestoClienteService.php +++ b/ci4/app/Services/PresupuestoClienteService.php @@ -25,8 +25,13 @@ class PresupuestoClienteService extends BaseService $total_plana = -1; $hay_plana = false; if ($data['isColor']) { - if ($data['datosPedido']->paginas == $data['paginas_color']) - $total_plana += floatval($plana[1]['total_impresion']); + if ($data['datosPedido']->paginas == $data['paginas_color']){ + if(count($plana[1]) > 2) + $total_plana += floatval($plana[1]['total_impresion']); + else + return -1; + } + elseif (count($plana) > 0) { if (count($plana[0]) > 2 && count($plana[1]) > 2) { $total_plana = 0.0; diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js index 22dfbeef..80069b73 100644 --- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js +++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js @@ -107,10 +107,14 @@ class PresupuestoCliente { if (datos_to_check.direcciones) { delete datos_to_check.direcciones; } + if(datos_to_check.posPaginasColor){ + delete datos_to_check.posPaginasColor; + } if (Object.values(datos_to_check).every(this.#isValidDataForm)) { try { $('#loader').modal('show'); + $('#loader').modal('show'); // Si se está ejecutando la petición, abortar la petición anterior this.ajax_calcular.abort(); @@ -409,6 +413,9 @@ class PresupuestoCliente { this.datos.selectedTirada = this.direcciones.getSelectedTirada(); } + if (window.location.href.includes("edit")) { + this.datos["id"] = window.location.href.split("/").pop(); + } } @@ -444,7 +451,8 @@ class PresupuestoCliente { return false; } if (typeof value === 'object' && value !== null) { - return Object.values(value).every(isValid); + const isValidData = Object.values(value).every(isValid); + return isValidData; } return true; } diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/resumen.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/resumen.js index d7f2b5f8..29244579 100644 --- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/resumen.js +++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/resumen.js @@ -109,7 +109,7 @@ class Resumen { this.cubiertaAcabados.text(this.disenioCubierta.getAcabados(true)); if (this.disenioCubierta.getSobrecubierta()) { - this.divSobrecubierta.rempveClass('d-none'); + this.divSobrecubierta.removeClass('d-none'); const sobrecubierta = this.disenioCubierta.getSobrecubierta(true); this.papelSobrecubierta.text(sobrecubierta.papel); this.gramajeSobrecubierta.text(sobrecubierta.gramaje); diff --git a/xdebug.log b/xdebug.log index 7f487362..b87caa3c 100644 --- a/xdebug.log +++ b/xdebug.log @@ -56453,3 +56453,1755 @@ Stack trace: [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-19 07:36:41.675869 +[43] Log opened at 2024-10-19 07:43:30.024885 +[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. +[35] Log opened at 2024-10-19 07:43:30.115245 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-19 07:43:31.200755 + +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] Log opened at 2024-10-19 07:43:31.371852 +[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. +[37] Log opened at 2024-10-19 07:43:31.422903 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-10-19 07:43:31.486750 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-10-19 07:43:31.698144 + +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] Log opened at 2024-10-19 07:43:32.159073 +[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. +[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. +[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). +[34] Log opened at 2024-10-19 07:43:32.446904 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log opened at 2024-10-19 07:43:32.543313 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] Log closed at 2024-10-19 07:43:32.544418 + +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-10-19 07:43:32.743378 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step 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 opened at 2024-10-19 07:43:32.806782 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] Log opened at 2024-10-19 07:43:32.882694 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] 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-19 07:43:32.933241 + +[22] [Step 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). +[35] Log opened at 2024-10-19 07:43:33.043273 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] Log opened at 2024-10-19 07:43:33.060714 +[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). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] Log opened at 2024-10-19 07:43:33.164964 +[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. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-19 07:43:33.330669 + +[27] Log opened at 2024-10-19 07:43:33.331462 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-10-19 07:43:33.774507 + +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-10-19 07:43:34.167456 + +[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. +[22] [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-19 07:43:34.570951 + +[22] [Step Debug] 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-19 07:43:34.956520 + +[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-19 07:43:35.361431 + +[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. +[35] [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-19 07:43:35.794664 + +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-10-19 07:43:36.178255 + +[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-19 07:43:36.576746 + +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-10-19 07:43:36.972008 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-19 07:43:37.351447 + +[45] Log opened at 2024-10-19 07:43:54.410518 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-10-19 07:43:55.550058 + +[46] Log opened at 2024-10-19 07:44:34.206909 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-10-19 07:44:34.219100 +[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-19 07:44:34.231781 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] 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). +[42] Log opened at 2024-10-19 07:44:36.184913 +[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). +[43] Log opened at 2024-10-19 07:44:38.604776 +[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). +[35] Log opened at 2024-10-19 07:44:40.493490 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-19 07:44:48.232048 + +[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-19 07:45:01.208427 + +[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-19 07:45:15.341377 + +[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-19 07:45:27.824886 + +[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-19 07:45:40.664466 + +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-10-19 07:45:54.331973 + +[41] Log opened at 2024-10-19 07:48:32.657944 +[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-19 07:48:34.391679 + +[41] Log opened at 2024-10-19 07:48:34.611842 +[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-19 07:48:34.671300 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] 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. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-10-19 07:48:35.269791 + +[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-19 07:48:35.852851 + +[46] Log opened at 2024-10-19 07:48:35.909040 +[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. +[37] Log opened at 2024-10-19 07:48:35.987524 +[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] Log opened at 2024-10-19 07:48:35.998569 +[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. +[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). +[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). +[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). +[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-19 07:48:36.986382 + +[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. +[39] [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-19 07:48:37.554488 + +[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-19 07:48:37.904344 + +[27] Log opened at 2024-10-19 07:48:47.166986 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-19 07:48:48.366960 + +[27] Log opened at 2024-10-19 07:48:48.610817 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] Log opened at 2024-10-19 07:48:48.687293 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log opened at 2024-10-19 07:48:49.213730 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] Log opened at 2024-10-19 07:48:49.317814 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-10-19 07:48:49.332111 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log opened at 2024-10-19 07:48:49.575228 +[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] Log opened at 2024-10-19 07:48:49.613502 +[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. +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-19 07:48:49.707368 + +[37] Log opened at 2024-10-19 07:48:49.721388 +[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). +[46] Log opened at 2024-10-19 07:48:49.810755 +[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. +[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). +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[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). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-10-19 07:48:50.074332 + +[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. +[48] [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-19 07:48:50.451045 + +[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. +[41] [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-19 07:48:50.809203 + +[41] [Step Debug] 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. +[22] [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-19 07:48:51.178965 + +[22] [Step Debug] 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-19 07:48:51.563323 + +[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. +[37] [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-19 07:48:51.955123 + +[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. +[46] [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-19 07:48:52.355912 + +[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-19 07:48:52.724065 + +[27] Log opened at 2024-10-19 07:48:59.981624 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-19 07:49:01.094167 + +[35] Log opened at 2024-10-19 07:49:50.710055 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-10-19 07:49:52.405081 + +[35] Log opened at 2024-10-19 07:49:52.609813 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-10-19 07:49:52.669325 +[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. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-10-19 07:49:53.267301 + +[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-19 07:49:53.894988 + +[42] Log opened at 2024-10-19 07:49:53.940086 +[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. +[48] Log opened at 2024-10-19 07:49:54.030346 +[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. +[22] Log opened at 2024-10-19 07:49:54.033817 +[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). +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] Log closed at 2024-10-19 07:49:55.034648 + +[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. +[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-19 07:49:55.638435 + +[22] [Step Debug] 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-19 07:49:55.982976 + +[47] Log opened at 2024-10-19 07:49:57.580135 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-19 07:49:58.755583 + +[47] Log opened at 2024-10-19 07:50:00.825618 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-19 07:50:01.902950 + +[27] Log opened at 2024-10-19 07:54:18.298860 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-19 07:54:19.992440 + +[27] Log opened at 2024-10-19 07:54:20.183883 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-10-19 07:54:20.233991 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-19 07:54:20.846900 + +[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-19 07:54:21.413880 + +[35] Log opened at 2024-10-19 07:54:21.493492 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] Log opened at 2024-10-19 07:54:21.577264 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] Log opened at 2024-10-19 07:54:21.581262 +[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. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-10-19 07:54:22.592693 + +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-10-19 07:54:23.274919 + +[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-19 07:54:23.615113 + +[22] Log opened at 2024-10-19 07:54:34.567374 +[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. +[47] Log opened at 2024-10-19 07:54:34.663236 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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. +[46] Log opened at 2024-10-19 07:54:35.711699 +[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. +[51] Log opened at 2024-10-19 07:54:35.749762 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] 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-19 07:54:35.791821 + +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-10-19 07:54:35.887746 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log opened at 2024-10-19 07:54:36.146845 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-10-19 07:54:36.179164 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step 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-19 07:54:36.284263 + +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step 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. +[51] [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-19 07:54:36.820028 + +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] Log closed at 2024-10-19 07:54:37.177596 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-19 07:54:37.587856 + +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-10-19 07:54:37.966440 + +[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-19 07:54:38.410883 + +[35] Log opened at 2024-10-19 07:54:55.467946 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-10-19 07:54:56.603701 + +[48] Log opened at 2024-10-19 07:55:27.973339 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log opened at 2024-10-19 07:55:32.644677 +[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). +[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-19 07:55:40.792928 + +[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-19 07:55:52.445033 + +[52] Log opened at 2024-10-19 07:56:15.850890 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-19 07:56:29.151855 + +[47] Log opened at 2024-10-19 07:56:46.935452 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-19 07:56:59.305683 + +[47] Log opened at 2024-10-19 07:57:02.139355 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-19 07:57:15.039603 + +[47] Log opened at 2024-10-19 07:57:15.846281 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-19 07:57:29.917662 + +[47] Log opened at 2024-10-19 07:57:31.717805 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-19 07:57:48.652406 + +[47] Log opened at 2024-10-19 07:57:50.728704 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-19 07:58:06.125587 + +[46] Log opened at 2024-10-19 07:59:10.600092 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-19 07:59:11.792693 + +[46] Log opened at 2024-10-19 07:59:16.326585 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-19 07:59:17.570488 + +[46] Log opened at 2024-10-19 07:59:18.439774 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-19 07:59:19.542837 + +[46] Log opened at 2024-10-19 07:59:20.868760 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-19 07:59:22.001446 + +[46] Log opened at 2024-10-19 07:59:22.020150 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-19 07:59:38.201055 + +[51] Log opened at 2024-10-19 07:59:58.527417 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] Log closed at 2024-10-19 07:59:59.728516 + +[51] Log opened at 2024-10-19 07:59:59.801514 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] Log closed at 2024-10-19 08:00:00.732311 + +[51] Log opened at 2024-10-19 08:00:01.027653 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] Log closed at 2024-10-19 08:00:01.935936 + +[27] Log opened at 2024-10-19 08:00:54.519574 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-19 08:00:56.291783 + +[27] Log opened at 2024-10-19 08:00:56.497711 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-19 08:00:57.724249 + +[50] Log opened at 2024-10-19 08:00:57.765153 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-10-19 08:00:57.858466 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] Log opened at 2024-10-19 08:00:57.859302 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-19 08:00:58.847661 + +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-10-19 08:00:59.438280 + +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] Log closed at 2024-10-19 08:00:59.777505 + +[22] Log opened at 2024-10-19 08:01:13.568271 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] Log opened at 2024-10-19 08:01:13.687745 +[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. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] Log opened at 2024-10-19 08:01:14.697599 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] 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-19 08:01:14.742539 + +[41] Log opened at 2024-10-19 08:01:14.777536 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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] Log closed at 2024-10-19 08:01:15.191141 + +[48] Log opened at 2024-10-19 08:01:15.206689 +[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. +[52] Log opened at 2024-10-19 08:01:15.266240 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] Log opened at 2024-10-19 08:01:15.331224 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log opened at 2024-10-19 08:01:15.529722 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-19 08:01:15.841084 + +[41] [Step Debug] 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. +[48] [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-19 08:01:16.220303 + +[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. +[52] [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-19 08:01:16.588788 + +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-19 08:01:16.979612 + +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-10-19 08:01:17.347961 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-19 08:01:17.712961 + +[51] Log opened at 2024-10-19 08:01:54.979972 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-10-19 08:01:54.990146 +[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. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] Log closed at 2024-10-19 08:01:57.121915 + +[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-19 08:01:58.481965 + +[47] Log opened at 2024-10-19 08:03:44.742303 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 29 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[47] [Step Debug] <- run -i 11 +[47] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- stack_get -i 12 +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 13 -n "$linea[0]->rotativa_pag_color" -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 14 -n "$data['excluirRotativa']" -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- context_names -i 15 -d 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- context_get -i 16 -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 17 -n "$data" -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 18 -n "$plana" -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 19 -n "$total_plana" -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 20 -n "$linea" -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 21 -n "$linea" -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 22 -n "$linea" -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 23 -n "$total_plana" -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 24 -n "$total_plana" -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 25 -n "$total_plana" -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_remove -i 26 -d 470002 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 34 +[47] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 28 -n "$plana" -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_remove -i 29 -d 470006 +[47] [Step Debug] -> + +[47] [Step Debug] <- run -i 30 +[47] [Step Debug] -> + +[47] Log closed at 2024-10-19 08:27:27.922742 + +[41] Log opened at 2024-10-19 08:27:36.153948 +[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 10 +[41] [Step Debug] -> + +[41] Log closed at 2024-10-19 08:27:36.929908 + +[48] Log opened at 2024-10-19 08:27:36.988178 +[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 10 +[48] [Step Debug] -> + +[48] Log closed at 2024-10-19 08:27:37.120521 + +[48] Log opened at 2024-10-19 08:27:37.357010 +[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[52] Log opened at 2024-10-19 08:27:37.382359 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[52] [Step Debug] -> + +[48] [Step Debug] <- run -i 10 +[52] [Step Debug] <- run -i 6 +[41] Log opened at 2024-10-19 08:27:37.487288 +[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[52] [Step Debug] -> + +[52] Log closed at 2024-10-19 08:27:37.811656 + +[48] [Step Debug] -> + +[48] Log closed at 2024-10-19 08:27:38.244722 + +[35] Log opened at 2024-10-19 08:27:46.347806 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 10 +[41] [Step Debug] <- run -i 10 +[35] [Step Debug] -> + +[35] Log closed at 2024-10-19 08:27:47.015202 + +[35] Log opened at 2024-10-19 08:27:47.111423 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 10 +[35] [Step Debug] -> + +[35] Log closed at 2024-10-19 08:27:47.248712 + +[41] [Step Debug] -> + +[41] Log closed at 2024-10-19 08:27:47.299915 + +[27] Log opened at 2024-10-19 08:27:47.350811 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[51] Log opened at 2024-10-19 08:27:47.376091 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[51] [Step Debug] -> + +[27] [Step Debug] <- run -i 10 +[51] [Step Debug] <- run -i 6 +[22] Log opened at 2024-10-19 08:27:47.473490 +[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/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[51] [Step Debug] -> + +[51] Log closed at 2024-10-19 08:27:47.824740 + +[27] [Step Debug] -> + +[27] Log closed at 2024-10-19 08:27:48.396101 + +[22] [Step Debug] <- stop -i 10 +[22] [Step Debug] -> + +[41] Log opened at 2024-10-19 08:28:43.689718 +[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-19 08:28:44.896914 + +[46] Log opened at 2024-10-19 08:29:17.568608 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-19 08:29:18.788655 + +[46] Log opened at 2024-10-19 08:29:18.898960 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-19 08:29:19.557475 + +[53] Log opened at 2024-10-19 08:29:19.795763 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] Log opened at 2024-10-19 08:29:19.807580 +[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. +[51] Log opened at 2024-10-19 08:29:19.891121 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step 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). +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-19 08:29:20.755662 + +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[53] Log closed at 2024-10-19 08:29:21.393511 + +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] Log closed at 2024-10-19 08:29:21.808321 + +[27] Log opened at 2024-10-19 08:29:27.149582 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-19 08:29:28.408739 + +[47] Log opened at 2024-10-19 08:29:31.636605 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-19 08:29:32.764580 + +[47] Log opened at 2024-10-19 08:29:32.847371 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-19 08:29:33.493540 + +[52] Log opened at 2024-10-19 08:29:33.681147 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] Log opened at 2024-10-19 08:29:33.710505 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-10-19 08:29:33.763958 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-19 08:29:34.705822 + +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-19 08:29:35.346623 + +[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-19 08:29:35.772472 + +[51] Log opened at 2024-10-19 08:32:43.170945 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[51] Log closed at 2024-10-19 08:32:44.368900 + +[47] Log opened at 2024-10-19 08:33:54.132887 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-19 08:33:56.110665 + +[46] Log opened at 2024-10-19 08:34:01.991429 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-19 08:34:03.210464 + +[46] Log opened at 2024-10-19 08:34:03.313334 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-19 08:34:03.962477 + +[35] Log opened at 2024-10-19 08:34:04.170027 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] Log opened at 2024-10-19 08:34:04.176937 +[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. +[52] Log opened at 2024-10-19 08:34:04.215681 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-19 08:34:05.134317 + +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-10-19 08:34:05.762385 + +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-10-19 08:34:06.186266 + +[27] Log opened at 2024-10-19 08:34:44.873265 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-19 08:34:47.085007 + +[46] Log opened at 2024-10-19 08:35:23.066217 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-10-19 08:35:25.229674 + +[41] Log opened at 2024-10-19 08:35:30.775398 +[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-19 08:35:31.958565 + +[41] Log opened at 2024-10-19 08:35:32.094402 +[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-19 08:35:32.765496 + +[53] Log opened at 2024-10-19 08:35:32.996064 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] Log opened at 2024-10-19 08:35:33.023823 +[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. +[35] Log opened at 2024-10-19 08:35:33.111784 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-19 08:35:33.972353 + +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[53] Log closed at 2024-10-19 08:35:34.607369 + +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-10-19 08:35:35.031882 + +[27] Log opened at 2024-10-19 08:36:00.203956 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-19 08:36:01.432306 + +[47] Log opened at 2024-10-19 08:36:01.526125 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-10-19 08:36:02.173417 + +[47] Log opened at 2024-10-19 08:36:02.400199 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] Log opened at 2024-10-19 08:36:02.408637 +[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. +[27] Log opened at 2024-10-19 08:36:02.420954 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-19 08:36:03.334976 + +[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. +[27] [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-19 08:36:03.946391 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-19 08:36:04.333195 + +[41] Log opened at 2024-10-19 08:36:36.528368 +[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-19 08:36:37.692720 + +[41] Log opened at 2024-10-19 08:36:37.793495 +[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-19 08:36:38.452361 + +[48] Log opened at 2024-10-19 08:36:38.675105 +[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. +[53] Log opened at 2024-10-19 08:36:38.694931 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] Log opened at 2024-10-19 08:36:38.700474 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[53] Log closed at 2024-10-19 08:36:39.608957 + +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-10-19 08:36:39.981879 + +[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-19 08:36:40.606820 + From 1914cb01fe437b755fc2d77530501740215638b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Jim=C3=A9nez?= Date: Sat, 19 Oct 2024 14:32:49 +0200 Subject: [PATCH 2/7] a punto de guardar --- .../Presupuestos/Presupuestocliente.php | 249 +- .../Models/Presupuestos/PresupuestoModel.php | 10 +- .../cliente/items/_disenioCubierta.php | 2 +- .../presupuestoCliente/disenioCubierta.js | 1 + .../presupuestoCliente/presupuestoCliente.js | 22 +- .../pages/presupuestoCliente/resumen.js | 9 +- xdebug.log | 2138 +++++++++++++++++ 7 files changed, 2346 insertions(+), 85 deletions(-) diff --git a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php index 513ae1b4..2194a775 100755 --- a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php +++ b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php @@ -412,11 +412,11 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $direccion['unidades'], $direccion['entregaPalets'] == 'true' ? 1 : 0 )[0]; - + if (!property_exists($coste_direccion, 'coste')) { $return_data['errors']->envios = "No se ha podido calcular el coste de envío"; - }else{ + } else { $coste_envio += $coste_direccion->coste; } } @@ -425,16 +425,16 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController } else { for ($i = 0; $i < count($tirada); $i++) { - + $coste_envio = 0.0; $coste_direccion = $this->getCosteEnvio(null, $return_data['peso'][$i], $tirada[$i], false)[0]; - + if (!property_exists($coste_direccion, 'coste')) { $return_data['errors']->envios = "No se ha podido calcular el coste de envío"; - }else{ + } else { $coste_envio += $coste_direccion->coste; } - + $return_data['precio_u'][$i] = round(floatval($return_data['precio_u'][$i]) + $coste_envio / $tirada[$i], 4); } @@ -616,11 +616,12 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $selected_tirada = $reqData['selectedTirada'] ?? 0; $tamanio = $reqData['tamanio']; $paginas = $reqData['paginas'] ?? 0; - + $paginas_color = $reqData['paginasColor'] ?? 0; + $posPaginasColor = $reqData['posPaginasColor'] ?? ""; $paginasColorConsecutivas = $reqData['pagColorConsecutivas'] ?? 0; - $papelInteriorDiferente = $reqData['papelInteriorDiferente'] ?? 0; - + $papelInteriorDiferente = $reqData['papelInteriorDiferente'] ?? 0; + $tipo = $reqData['tipo']; $paginasCuadernillo = $reqData['paginasCuadernillo'] ?? null; @@ -655,11 +656,12 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $interior = [ 'papel_generico' => $papel, 'gramaje' => $gramaje, - 'excluirRotativa' => $excluirRotativa, + 'excluirRotativa' => $excluirRotativa, 'paginas' => $paginas, + 'paginasColor' => $paginas_color, 'pos_paginas_color' => $posPaginasColor, 'paginas_color_consecutivas' => $paginasColorConsecutivas, - 'papel_interior_diferente' => $papelInteriorDiferente + 'papelInteriorDiferente' => $papelInteriorDiferente ]; @@ -916,7 +918,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $data['datosGenerales']['excluirRotativa'] = $presupuesto->excluir_rotativa; $data['datosGenerales']['clienteId'] = $presupuesto->cliente_id; $data['datosGenerales']['clienteNombre'] = $modelCliente->getNombre($presupuesto->cliente_id); - model('App\Models\Clientes\ClienteModel') + model('App\Models\Clientes\ClienteModel') ->find($presupuesto->cliente_id)->nombre; $data['datosGenerales']['papelFormatoId'] = $presupuesto->papel_formato_id; $data['datosGenerales']['papelFormatoNombre'] = $modelPapelFormato->getNombre($presupuesto->papel_formato_id); @@ -951,7 +953,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $modelLinea = new PresupuestoLineaModel(); $lineas = $modelLinea->where('presupuesto_id', $id)->findAll(); - [$data['datosGenerales']['paginasNegro'], $data['datosGenerales']['paginasColor']] = + [$data['datosGenerales']['paginasNegro'], $data['datosGenerales']['paginasColor']] = $this->getPaginas($lineas); @@ -1339,7 +1341,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $gramaje = $datos_entrada['interior']['gramaje']; $excluirRotativa = $datos_entrada['interior']['excluirRotativa']; $paginas = $datos_entrada['interior']['paginas']; - $paginas_color = $datos_entrada['interior']['paginas_color']; + $paginas_color = $datos_entrada['interior']['paginasColor']; // Cubierta @@ -1358,15 +1360,6 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController // Servicios $servicios = $datos_entrada['servicios'] ?? []; - $error = (object) [ - 'interior' => "", - 'cubierta' => "", - 'sobrecubierta' => "", - 'guardas' => "", - 'servicios' => "", - 'serviciosDefecto' => "", - "envios" => "", - ]; $coste_servicios = 0.0; $POD = model('App\Models\Configuracion\ConfiguracionSistemaModel')->getPOD(); @@ -1427,9 +1420,15 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController if ($interior == -1) { $errorModel = new ErrorPresupuesto(); - $errorModel->insertError($datos_entrada['id'], auth()->user()->id, 'No se puede obtener el interior', $input_data); + $errorModel->insertError( + $datos_entrada['id'], + auth()->user()->id, + ' + No se puede obtener el interior', + $input_data + ); $return_data = [ - 'errors' => (object)([ + 'errors' => (object) ([ 'status' => 1 ]), ]; @@ -1455,8 +1454,6 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController } } - - // Si es POD hay que volver a calcular para incluir la merma correcta if ($tirada[$t] <= $POD) { $num_formas = []; @@ -1472,10 +1469,16 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController } $interior = PresupuestoClienteService::obtenerInterior($input_data); if ($interior == -1) { + $errorModel = new ErrorPresupuesto(); - $errorModel->insertError($datos_entrada['id'], auth()->user()->id, 'No se puede obtener el interior', $input_data); + $errorModel->insertError( + $datos_entrada['id'], + auth()->user()->id, + 'No se puede obtener el interior', + $input_data + ); $return_data = [ - 'errors' => (object)([ + 'errors' => (object) ([ 'status' => 1 ]), ]; @@ -1511,11 +1514,21 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController } } - if ($costeInterior <= 0) - $error->interior = lang('Presupuestos.errores.noInterior'); - else - $error->interior = ""; + if ($costeInterior <= 0){ + $errorModel = new ErrorPresupuesto(); + $errorModel->insertError( + $datos_entrada['id'], + auth()->user()->id, + 'No se puede obtener el interior', + $input_data + ); + $return_data = [ + 'errors' => (object) ([ + 'status' => 1 + ]), + ]; + } // Cubierta $input_data['papel_generico'] = $papel_generico_cubierta; @@ -1548,11 +1561,21 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController ); } } - if ($coste_cubierta <= 0) - $error->cubierta = lang('Presupuestos.errores.noCubiertaSobrecubierta'); - else - $error->cubierta = ""; + if ($coste_cubierta <= 0) { + $errorModel = new ErrorPresupuesto(); + $errorModel->insertError( + $datos_entrada['id'], + auth()->user()->id, + 'No se puede obtener la cubierta', + $input_data + ); + $return_data = [ + 'errors' => (object) ([ + 'status' => 1 + ]), + ]; + } // Acabados Cubierta $tarifaAcabadoCubierta = $this->obtenerTarifasAcabado($acabadosCubierta); $acabadoCubierta = []; @@ -1564,8 +1587,22 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $acabadoCubierta = $model->getPrecioTarifa($tarifa, $datosPedido->tirada, -1, $POD); if (count($acabadoCubierta) > 0) { - if ($acabadoCubierta[0]->total <= 0) - $error->servicios = lang('Presupuestos.errores.errorPresupuesto'); + if ($acabadoCubierta[0]->total <= 0) { + + $input_data['tarifas_acabado_cubierta'] = $tarifaAcabadoCubierta; + $errorModel = new ErrorPresupuesto(); + $errorModel->insertError( + $datos_entrada['id'], + auth()->user()->id, + 'No se puede obtener acabados de cubierta', + $input_data + ); + $return_data = [ + 'errors' => (object) ([ + 'status' => 1 + ]), + ]; + } $coste_servicios += floatval($acabadoCubierta[0]->total); } } @@ -1607,11 +1644,21 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController ); } } - if ($coste_sobrecubierta <= 0) - $error->sobrecubierta = lang('Presupuestos.errores.noCubiertaSobrecubierta'); - else - $error->sobrecubierta = ""; + if ($coste_sobrecubierta <= 0) { + $errorModel = new ErrorPresupuesto(); + $errorModel->insertError( + $datos_entrada['id'], + auth()->user()->id, + 'No se puede obtener la sobrecubierta', + $input_data + ); + $return_data = [ + 'errors' => (object) ([ + 'status' => 1 + ]), + ]; + } $lomo_sobrecubierta = $lomo + floatval($linea_sobrecubierta['mano']); $tarifaAcabadoSobrecubierta = $this->obtenerTarifasAcabado(['plastificado' => $sobreCubierta['acabados']]); @@ -1619,14 +1666,30 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController foreach ($tarifaAcabadoSobrecubierta as $tarifa) { // NONE - if($tarifaAcabadoSobrecubierta[0] == 0) + if ($tarifaAcabadoSobrecubierta[0] == 0) continue; $model = model('App\Models\Presupuestos\PresupuestoAcabadosModel'); $acabadoSobrecubierta = $model->getPrecioTarifa($tarifa, $datosPedido->tirada, -1, $POD); if (count($acabadoSobrecubierta) > 0) { - if ($acabadoSobrecubierta[0]->total <= 0) - $error->servicios = lang('Presupuestos.errores.errorPresupuesto'); + + if ($acabadoSobrecubierta[0]->total <= 0) { + + $input_data['tarifas_acabado_sobrecubierta'] = $tarifaAcabadoSobrecubierta; + $errorModel = new ErrorPresupuesto(); + $errorModel->insertError( + $datos_entrada['id'], + auth()->user()->id, + 'No se puede obtener acabados de sobrecubierta', + $input_data + ); + $return_data = [ + 'errors' => (object) ([ + 'status' => 1 + ]), + ]; + } + $coste_servicios += floatval($acabadoSobrecubierta[0]->total); } } @@ -1677,10 +1740,20 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController ); } } - if ($coste_guardas <= 0) - $error->guardas = lang('Presupuestos.errores.noGuardas'); - else - $error->guardas = ""; + if ($coste_guardas <= 0) { + $errorModel = new ErrorPresupuesto(); + $errorModel->insertError( + $datos_entrada['id'], + auth()->user()->id, + 'No se puede obtener las guardas', + $input_data + ); + $return_data = [ + 'errors' => (object) ([ + 'status' => 1 + ]), + ]; + } } } if ($extra_info) { @@ -1704,8 +1777,23 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController ]); $costeServiciosDefecto = 0.0; foreach ($servDefecto as $servicio) { - if ($servicio->total <= 0) - $error->serviciosDefecto = lang('Presupuestos.errores.errorPresupuesto'); + if ($servicio->total <= 0) { + + $input_data['servicios'] = $servDefecto; + $errorModel = new ErrorPresupuesto(); + $errorModel->insertError( + $datos_entrada['id'], + auth()->user()->id, + 'No se puede obtener servicios', + $input_data + ); + $return_data = [ + 'errors' => (object) ([ + 'status' => 1 + ]), + ]; + } + $costeServiciosDefecto += floatval($servicio->total); if ($extra_info) { @@ -1741,6 +1829,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController if ($datos_entrada['servicios']['prototipo']) array_push($servicios, 9); foreach ($servicios as $servicio) { + if (intval($servicio) == 3) { // Servicios acabado $resultado = PresupuestoCLienteService::getServiciosAcabados([ @@ -1749,8 +1838,22 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController 'POD' => $POD, ]); array_push($serviciosAutomaticos, $resultado[0]); - if ($resultado[0]->total <= 0) - $error->servicios = lang('Presupuestos.errores.errorPresupuesto'); + + if ($resultado[0]->total <= 0) { + + $errorModel = new ErrorPresupuesto(); + $errorModel->insertError( + $datos_entrada['id'], + auth()->user()->id, + 'No se puede obtener servicio con id 3', + $input_data + ); + $return_data = [ + 'errors' => (object) ([ + 'status' => 1 + ]), + ]; + } $coste_servicios += floatval($resultado[0]->total); if ($extra_info) { @@ -1763,8 +1866,22 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController 'tarifa_id' => $servicio, ]); array_push($serviciosAutomaticos, $resultado[0]); - if ($resultado[0]->precio <= 0) - $error->servicios = lang('Presupuestos.errores.errorPresupuesto'); + if ($resultado[0]->precio <= 0){ + + $errorModel = new ErrorPresupuesto(); + $errorModel->insertError( + $datos_entrada['id'], + auth()->user()->id, + 'No se puede obtener servicio con id 9', + $input_data + ); + $return_data = [ + 'errors' => (object) ([ + 'status' => 1 + ]), + ]; + } + $coste_servicios += floatval($resultado[0]->precio); if ($extra_info) { @@ -1776,11 +1893,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController array_push($precio_u, round(($costeInterior + $coste_cubierta + $coste_sobrecubierta + $costeServiciosDefecto + $coste_servicios) / $tirada[$t], 4)); array_push($peso, round($peso_interior + $peso_cubierta + $peso_sobrecubierta + $peso_guardas, 2)); - foreach ($error as $err) { - if ($err != "") - break; - } - + if ($extra_info) { $totalServicios -= $margenServicios; $porcentajeMargenServicios = $margenServicios / ($margenServicios + $totalServicios) * 100; @@ -1806,8 +1919,8 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController )); } - $info['lomo_cubierta'] = $lomo; - $info['lomo_sobrecubierta'] = $lomo_sobrecubierta; + $info['lomo_cubierta'] = round(floatval($lomo), 2); + $info['lomo_sobrecubierta'] = round(floatval($lomo_sobrecubierta), 2); $return_data['info'] = $info; @@ -1823,7 +1936,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController } $return_data += [ - 'errors' => $error, + 'errors' => [], //'total_lp' => $costeInterior + $coste_cubierta + $coste_sobrecubierta, //'acabadoCubierta' => $acabadoCubierta, //'acabadoSobrecubierta' => $acabadoSobrecubierta, @@ -1839,6 +1952,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController } return $return_data; + } catch (Exception $e) { return [ 'exception' => $e->getMessage(), @@ -2285,11 +2399,12 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController } - private function getPaginas($lineas){ + private function getPaginas($lineas) + { $paginasNegro = 0; $paginasColor = 0; - + foreach ($lineas as $linea) { if (strpos($linea->tipo, "lp_bn") !== false || strpos($linea->tipo, "lp_bnhq") !== false) { $paginasNegro = $linea->paginas; @@ -2308,7 +2423,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $paginasNegro = $linea->paginas - $linea->rotativa_pag_color; } } - + return [$paginasNegro, $paginasColor]; } } diff --git a/ci4/app/Models/Presupuestos/PresupuestoModel.php b/ci4/app/Models/Presupuestos/PresupuestoModel.php index ee35e651..b4484b49 100755 --- a/ci4/app/Models/Presupuestos/PresupuestoModel.php +++ b/ci4/app/Models/Presupuestos/PresupuestoModel.php @@ -426,7 +426,7 @@ class PresupuestoModel extends \App\Models\BaseModel 'pos_paginas_color' => $data['interior']['pos_paginas_color'], 'paginas_color_consecutivas' => $data['interior']['paginas_color_consecutivas'], - 'papel_interior_diferente' => $data['interior']['papel_interior_diferente'], + 'papel_interior_diferente' => $data['interior']['papelInteriorDiferente'], 'lomo_cubierta' => $extra_info['lomo_cubierta'], 'lomo_sobrecubierta' => $extra_info['lomo_sobrecubierta'], @@ -495,27 +495,27 @@ class PresupuestoModel extends \App\Models\BaseModel if (is_array($data)) { // -- INTERIOR -- // Si hay negro - if ($data['interior']['paginas'] > $data['interior']['paginas_color']) { + if (intval($data['interior']['paginas']) > intval($data['interior']['paginasColor'])) { if ($data['isHq']) $key = 'bnhq'; else $key = 'bn'; $values[$key] = array( - 'paginas' => intval($data['interior']['paginas']) - intval($data['interior']['paginas_color']), + 'paginas' => intval($data['interior']['paginas']) - intval(intval($data['interior']['paginasColor'])), 'papel_id' => intval($data['interior']['papel_generico']['id']), 'gramaje' => intval($data['interior']['gramaje']), ); } // Si hay color - if ($data['interior']['paginas_color'] > 0) { + if (intval($data['interior']['paginasColor']) > 0) { if ($data['isHq']) $key = 'colorhq'; else $key = 'color'; $values[$key] = array( - 'paginas' => intval($data['interior']['paginas_color']), + 'paginas' => intval(intval($data['interior']['paginasColor'])), 'papel_id' => intval($data['interior']['papel_generico']['id']), 'gramaje' => intval($data['interior']['gramaje']), ); 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 844d36f0..048b2110 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 @@ -127,7 +127,7 @@ - diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/disenioCubierta.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/disenioCubierta.js index d54de01a..421e1d32 100644 --- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/disenioCubierta.js +++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/disenioCubierta.js @@ -386,6 +386,7 @@ class DisenioCubierta { sobrecubierta.gramaje = papel.split(' ')[2]; sobrecubierta.solapas = this.domItem.find("#solapasSobrecubierta").val(); sobrecubierta.plastificado = 'Plastificado ' + this.domItem.find("#plastificadoSobrecubierta").children("option:selected").text(); + return sobrecubierta; } else { let sobrecubierta = {}; diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js index 80069b73..c344a814 100644 --- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js +++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js @@ -47,8 +47,6 @@ class PresupuestoCliente { init() { - this.RELLENAR_PRESUPUESTO(false); - // Fuerza el foco en el campo de búsqueda de select2 $(document).on('select2:open', () => { document.querySelector('.select2-search__field').focus(); @@ -66,8 +64,6 @@ class PresupuestoCliente { this.btnPrev.on('click', this.#prevtStep.bind(this)); this.btnSave.on('click', this.#savePresupuesto.bind(this)); - //this.RELLENAR_PRESUPUESTO(true); - if (window.location.href.includes("edit")) { $(".calcular-presupuesto").on('change', ()=>{}); this.#cargarPresupuesto(); @@ -113,8 +109,9 @@ class PresupuestoCliente { if (Object.values(datos_to_check).every(this.#isValidDataForm)) { try { - $('#loader').modal('show'); - $('#loader').modal('show'); + setTimeout(function() { + $('#loader').modal('show'); + }, 0); // Si se está ejecutando la petición, abortar la petición anterior this.ajax_calcular.abort(); @@ -132,7 +129,7 @@ class PresupuestoCliente { } - RELLENAR_PRESUPUESTO(finalizar) { + /*RELLENAR_PRESUPUESTO(finalizar) { if (finalizar) { @@ -185,7 +182,7 @@ class PresupuestoCliente { else { $("#titulo").trigger('change'); } - } + }*/ stepperHandler() { @@ -243,8 +240,13 @@ class PresupuestoCliente { $('#loader').modal('hide'); console.log(response); if (this.datos["confirmar"] || window.location.href.includes("add")) { - sessionStorage.setItem('message', response.message); - window.location.href = response.url + '/' + response.status; + if(response.status){ + sessionStorage.setItem('message', response.message); + window.location.href = response.url + '/' + response.status; + } + else{ + popErrorAlert("No se ha podido guardar el presupuesto. Por favor, póngase en contacto con el departamento comercial."); + } } else { popSuccessAlert(response.message); diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/resumen.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/resumen.js index 29244579..ee9e9a08 100644 --- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/resumen.js +++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/resumen.js @@ -57,7 +57,12 @@ class Resumen { this.titulo.text(this.datosGenerales.titulo.val()); this.tipoLibro.text(this.#capitalizeFirstLetter(this.datosGenerales.tiposLibro.filter('.selected').attr('id'))); - this.formato.text(this.datosGenerales.papelFormatoId.find('option:selected').text()); + + if (this.datosGenerales.checkFormatoPersonalizado.is(':checked')) + this.formato.text(this.datosGenerales.anchoPersonalizado.val() + ' x ' + this.datosGenerales.altoPersonalizado.val()); + else + this.formato.text(this.datosGenerales.papelFormatoId.find('option:selected').text()); + this.paginas.text(this.datosGenerales.paginas.val()); this.paginasColor.text(this.datosGenerales.paginasColor.val()); this.paginasNegro.text(this.datosGenerales.paginasNegro.val()); @@ -93,7 +98,7 @@ class Resumen { this.itemsCubiertaTapaBlanda.removeClass('d-none'); this.itemsCubiertaTapaDura.addClass('d-none'); const solapasCubierta = this.disenioCubierta.getSolapasCubierta(); - this.solapasCubierta.text( solapasCubierta == false ? 'No' : solapasCubierta); + this.solapasCubierta.text(solapasCubierta == false ? 'No' : solapasCubierta); } else { this.itemsCubiertaTapaDura.removeClass('d-none'); diff --git a/xdebug.log b/xdebug.log index b87caa3c..a6941d30 100644 --- a/xdebug.log +++ b/xdebug.log @@ -58205,3 +58205,2141 @@ Stack trace: [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-19 08:36:40.606820 +[23] Log opened at 2024-10-19 11:04:19.856566 +[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-19 11:04:20.844931 + +[24] Log opened at 2024-10-19 11:04:20.860030 +[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-19 11:04:21.819793 + +[24] Log opened at 2024-10-19 11:04:21.951596 +[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-19 11:04:22.612670 + +[25] Log opened at 2024-10-19 11:04:22.798730 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-19 11:04:23.686746 + +[25] Log opened at 2024-10-19 11:04:24.186474 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-19 11:04:25.653443 + +[25] Log opened at 2024-10-19 11:04:25.666374 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-19 11:04:26.849196 + +[25] Log opened at 2024-10-19 11:04:26.939237 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-19 11:04:27.589930 + +[25] Log opened at 2024-10-19 11:04:27.800410 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-10-19 11:04:27.808251 +[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. +[27] Log opened at 2024-10-19 11:04:27.873453 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-19 11:04:28.756829 + +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-19 11:04:29.408429 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-19 11:04:29.825157 + +[31] Log opened at 2024-10-19 11:24:53.162648 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-10-19 11:24:54.288736 + +[31] Log opened at 2024-10-19 11:24:54.304981 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-10-19 11:24:55.385669 + +[33] Log opened at 2024-10-19 11:27:14.122236 +[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-19 11:27:15.865850 + +[33] Log opened at 2024-10-19 11:27:16.105284 +[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. +[24] Log opened at 2024-10-19 11:27:16.163399 +[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. +[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. +[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). +[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-19 11:27:16.762627 + +[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-19 11:27:17.353152 + +[22] Log opened at 2024-10-19 11:27:17.413862 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] Log opened at 2024-10-19 11:27:17.523675 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-10-19 11:27:17.525676 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-10-19 11:27:18.550039 + +[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. +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-19 11:27:19.214516 + +[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-19 11:27:19.573407 + +[31] Log opened at 2024-10-19 11:27:34.898901 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-10-19 11:27:36.628094 + +[31] Log opened at 2024-10-19 11:27:36.853981 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-10-19 11:27:36.917001 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-10-19 11:27:37.517397 + +[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-19 11:27:38.096461 + +[23] Log opened at 2024-10-19 11:27:38.155942 +[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. +[35] Log opened at 2024-10-19 11:27:38.254406 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-10-19 11:27:38.263442 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-10-19 11:27:39.259703 + +[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. +[24] [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-19 11:27:39.961342 + +[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-19 11:27:40.300303 + +[22] Log opened at 2024-10-19 11:27:50.258699 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-10-19 11:27:50.338840 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log opened at 2024-10-19 11:27:51.052232 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] Log opened at 2024-10-19 11:27:51.136828 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] 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. +[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). +[22] Log closed at 2024-10-19 11:27:51.487632 + +[31] Log opened at 2024-10-19 11:27:51.512413 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] Log opened at 2024-10-19 11:27:51.596291 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-10-19 11:27:51.678605 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[35] Log opened at 2024-10-19 11:27:51.819178 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] Log opened at 2024-10-19 11:27:51.838953 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-10-19 11:27:51.937427 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-19 11:27:51.940825 + +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log opened at 2024-10-19 11:27:52.032142 +[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). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-19 11:27:52.335854 + +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] 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-19 11:27:52.701398 + +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-10-19 11:27:53.080148 + +[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-19 11:27:53.456202 + +[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-19 11:27:53.862320 + +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-10-19 11:27:54.272028 + +[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. +[24] [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-19 11:27:54.636067 + +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-19 11:27:55.022669 + +[22] [Step Debug] 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-19 11:27:55.419836 + +[36] Log opened at 2024-10-19 11:28:29.342384 +[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-19 11:28:29.354223 +[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. +[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). +[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). +[39] Log opened at 2024-10-19 11:28:31.331859 +[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). +[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-19 11:28:53.126303 + +[31] Log opened at 2024-10-19 11:29:03.714822 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-19 11:29:05.658030 + +[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-19 11:29:17.035250 + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-10-19 11:29:35.548622 + +[33] Log opened at 2024-10-19 11:30:21.669722 +[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-19 11:30:35.278180 + +[32] Log opened at 2024-10-19 11:31:35.124865 +[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-19 11:31:55.527152 + +[32] Log opened at 2024-10-19 11:31:57.013760 +[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-19 11:32:11.904407 + +[32] Log opened at 2024-10-19 11:32:16.160640 +[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-19 11:32:33.117813 + +[35] Log opened at 2024-10-19 11:32:57.729200 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-10-19 11:33:00.479523 + +[23] Log opened at 2024-10-19 11:34:17.625395 +[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-19 11:34:34.254135 + +[24] Log opened at 2024-10-19 11:35:07.939242 +[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-19 11:35:23.710981 + +[22] Log opened at 2024-10-19 11:36:19.926718 +[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-19 11:36:21.097104 + +[22] Log opened at 2024-10-19 11:36:24.279397 +[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-19 11:36:25.535613 + +[22] Log opened at 2024-10-19 11:36:27.878126 +[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-19 11:36:29.006997 + +[22] Log opened at 2024-10-19 11:36:29.742395 +[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-19 11:36:30.912480 + +[22] Log opened at 2024-10-19 11:36:30.934226 +[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-19 11:36:47.719031 + +[36] Log opened at 2024-10-19 11:43:56.325434 +[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-19 11:43:57.601306 + +[36] Log opened at 2024-10-19 11:43:57.665440 +[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] [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-19 11:43:58.601831 + +[36] Log opened at 2024-10-19 11:43:58.879043 +[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] [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-19 11:43:59.812571 + +[38] Log opened at 2024-10-19 11:59:13.491879 +[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-19 11:59:15.167801 + +[38] Log opened at 2024-10-19 11:59:15.379288 +[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. +[39] Log opened at 2024-10-19 11:59:15.382742 +[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] 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] 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-19 11:59:16.093669 + +[24] Log opened at 2024-10-19 11:59:16.112495 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-10-19 11:59:16.125567 +[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] 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). +[22] [Step 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-19 11:59:16.693544 + +[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-19 11:59:17.188764 + +[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-19 11:59:18.187484 + +[22] Log opened at 2024-10-19 11:59:18.347593 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-10-19 11:59:18.419195 +[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] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] 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-19 11:59:19.011132 + +[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-19 11:59:19.703223 + +[22] Log opened at 2024-10-19 11:59:19.750380 +[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. +[33] Log opened at 2024-10-19 11:59:19.844223 +[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] Log opened at 2024-10-19 11:59:19.850057 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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] 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-19 11:59:20.891230 + +[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. +[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). +[22] Log closed at 2024-10-19 11:59:21.530080 + +[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-19 11:59:21.871451 + +[23] Log opened at 2024-10-19 11:59:28.790674 +[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-19 11:59:28.875536 +[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] [Step 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. +[39] Log opened at 2024-10-19 11:59:29.877773 +[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] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] Log opened at 2024-10-19 11:59:29.945214 +[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. +[24] Log opened at 2024-10-19 11:59:30.047057 +[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. +[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] Log closed at 2024-10-19 11:59:30.135181 + +[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). +[38] [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). +[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-19 11:59:30.560819 + +[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. +[40] [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-19 11:59:31.008109 + +[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. +[24] [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-19 11:59:31.391411 + +[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-19 11:59:31.778663 + +[32] Log opened at 2024-10-19 12:00:30.224813 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-10-19 12:00:30.238055 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-10-19 12:00:44.813396 + +[33] Log opened at 2024-10-19 12:00:50.534099 +[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). +[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-19 12:01:00.027983 + +[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-19 12:01:00.432262 + +[33] Log opened at 2024-10-19 12:01:03.167267 +[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-19 12:01:04.284691 + +[33] Log opened at 2024-10-19 12:01:05.045487 +[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-19 12:01:06.151390 + +[33] Log opened at 2024-10-19 12:01:07.627029 +[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-19 12:01:08.731040 + +[33] Log opened at 2024-10-19 12:01:08.748223 +[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-19 12:01:24.719063 + +[36] Log opened at 2024-10-19 12:03:34.106241 +[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-19 12:03:35.884491 + +[36] Log opened at 2024-10-19 12:03:36.107653 +[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-19 12:03:36.157799 +[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-19 12:03:36.764752 + +[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-19 12:03:37.362418 + +[40] Log opened at 2024-10-19 12:03:37.489240 +[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. +[23] Log opened at 2024-10-19 12:03:37.505229 +[24] Log opened at 2024-10-19 12:03:37.505228 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [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). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-19 12:03:38.494602 + +[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. +[24] [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-19 12:03:39.130076 + +[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-19 12:03:39.487429 + +[32] Log opened at 2024-10-19 12:03:46.636253 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] Log opened at 2024-10-19 12:03:46.702754 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-10-19 12:03:47.763218 + +[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-19 12:03:48.211304 + +[22] Log opened at 2024-10-19 12:04:48.036826 +[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-19 12:05:03.834688 + +[22] Log opened at 2024-10-19 12:05:05.365778 +[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-19 12:05:20.936532 + +[41] Log opened at 2024-10-19 12:05:26.342673 +[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-19 12:05:27.515512 + +[41] Log opened at 2024-10-19 12:05:31.331527 +[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-19 12:05:32.461194 + +[41] Log opened at 2024-10-19 12:05:32.894311 +[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-19 12:05:34.026490 + +[41] Log opened at 2024-10-19 12:05:34.910480 +[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-19 12:05:36.073592 + +[41] Log opened at 2024-10-19 12:05:36.090947 +[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-19 12:05:51.723531 + +[36] Log opened at 2024-10-19 12:06:09.074247 +[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-19 12:06:10.376968 + +[38] Log opened at 2024-10-19 12:07:14.492739 +[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-19 12:07:15.802244 + +[39] Log opened at 2024-10-19 12:08:42.185991 +[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/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1327 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 11 +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 12 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 13 -n "$linea[0]->rotativa_pag_color" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 14 -n "$data['excluirRotativa']" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 15 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 16 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 17 -n "$linea[0]->rotativa_pag_color" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 18 -n "$data['excluirRotativa']" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 19 -n "$datos_entrada" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 20 -n "$data['excluirRotativa']" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 21 -n "$datos_entrada" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 22 -n "$datos_entrada" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 23 -n "$datos_entrada[\"interior\"]" -p 0 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 24 -n "$datos_entrada" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 25 -n "$cubierta" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 26 -n "$isColor" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 28 +[39] [Step Debug] -> + +[39] Log closed at 2024-10-19 12:10:09.650638 + +[39] Log opened at 2024-10-19 12:10:14.573526 +[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/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1327 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 12 +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 13 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 14 -n "$datos_entrada" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 15 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 16 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 17 -n "$paginasCuadernillo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_remove -i 18 -d 390009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1328 +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 20 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 21 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 22 -n "$datos_entrada" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 23 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 24 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 25 +[39] [Step Debug] -> + +[39] Log closed at 2024-10-19 12:11:10.020500 + +[23] Log opened at 2024-10-19 12:11:53.794515 +[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-19 12:11:55.032210 + +[40] Log opened at 2024-10-19 12:12:46.787493 +[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-19 12:12:47.990631 + +[24] Log opened at 2024-10-19 12:13:25.987193 +[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-19 12:13:27.244507 + +[32] Log opened at 2024-10-19 12:14:28.531889 +[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-19 12:14:29.785439 + +[33] Log opened at 2024-10-19 12:14:42.439328 +[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/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 656 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1329 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1344 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 14 +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 15 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 16 -n "$datos_entrada" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 17 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 19 -n "$papel" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 20 -n "$reqData" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_remove -i 21 -d 330003 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 248 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 23 +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 24 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 25 -n "$datos_entrada" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 26 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 27 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 28 +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 29 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 30 -n "$datos_entrada" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 31 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 32 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 33 +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 34 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 35 -n "$datos_entrada" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 36 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 37 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 38 -n "$datos_entrada" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 39 -n "$data" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 40 -n "$data[\"papel_generico\"]" -p 0 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 41 -n "$data[\"papel_generico\"][\"negro\"]" -p 0 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 42 +[33] [Step Debug] -> + +[33] Log closed at 2024-10-19 12:17:28.169480 + +[33] Log opened at 2024-10-19 12:17:30.716207 +[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/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1329 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1344 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 248 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 14 +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 15 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 16 -n "$datos_entrada" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 17 -n "$data" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 18 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_remove -i 20 -d 330012 +[33] [Step Debug] -> + +[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 "$datos_entrada" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 24 -n "$data" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 25 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 26 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 27 +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 28 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 29 -n "$datos_entrada" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 30 -n "$data" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 31 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 32 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- step_over -i 33 +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 34 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 35 -n "$datos_entrada" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 36 -n "$data" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 37 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 38 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_remove -i 39 -d 330014 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 40 +[33] [Step Debug] -> + +[33] Log closed at 2024-10-19 12:18:02.198996 + +[22] Log opened at 2024-10-19 12:18:21.642834 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-19 12:18:37.408354 + +[41] Log opened at 2024-10-19 12:22:23.243829 +[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-19 12:22:24.506566 + +[36] Log opened at 2024-10-19 12:24:34.133809 +[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/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1339 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 12 +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 13 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 14 -n "$datos_entrada" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 15 -n "$data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 16 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 17 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- step_over -i 18 +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 19 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 20 -n "$datos_entrada" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 21 -n "$data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 22 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 23 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 24 -n "$datos_entrada[\"interior\"]" -p 0 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 20 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 26 +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 27 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 28 -n "$datos_entrada" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 29 -n "$data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 30 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 31 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- step_over -i 32 +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 33 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 34 -n "$datos_entrada" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 35 -n "$data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 36 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 37 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- step_into -i 38 +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 39 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 40 -n "$datos_entrada" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 41 -n "$data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 42 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 43 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- step_over -i 44 +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 45 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 46 -n "$datos_entrada" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 47 -n "$data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 48 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 49 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- step_over -i 50 +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 51 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 52 -n "$datos_entrada" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 53 -n "$data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 54 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 55 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- step_over -i 56 +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 57 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 58 -n "$datos_entrada" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 59 -n "$data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 60 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- step_over -i 61 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 62 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 63 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 64 -n "$datos_entrada" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 65 -n "$data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 66 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 67 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 68 +[36] [Step Debug] -> + +[36] Log closed at 2024-10-19 12:26:03.337225 + +[36] Log opened at 2024-10-19 12:26:06.018450 +[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/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1339 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 20 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 13 +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 14 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 15 -n "$datos_entrada" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 16 -n "$data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 17 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 19 +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 20 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 21 -n "$datos_entrada" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 22 -n "$data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 23 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 24 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 25 +[36] [Step Debug] -> + +[36] Log closed at 2024-10-19 12:26:12.443303 + +[36] Log opened at 2024-10-19 12:26:15.387395 +[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/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1339 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 20 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 13 +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 14 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 15 -n "$datos_entrada" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 16 -n "$data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 17 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_remove -i 19 -d 360017 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 20 +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 21 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 22 -n "$datos_entrada" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 23 -n "$data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 24 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 25 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_remove -i 26 -d 360018 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 245 +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 28 +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 29 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 30 -n "$datos_entrada" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 31 -n "$data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 32 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 33 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 34 -n "$datos_entrada" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 35 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 36 -n "$data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 37 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 38 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 39 -n "$datos_entrada" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 40 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 41 -n "$data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 42 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 43 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 44 +[36] [Step Debug] -> + +[36] Log closed at 2024-10-19 12:27:52.878712 + +[36] Log opened at 2024-10-19 12:27:56.411497 +[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] [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-19 12:28:14.240551 + +[38] Log opened at 2024-10-19 12:28:48.216948 +[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] [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-19 12:29:04.577054 + +[39] Log opened at 2024-10-19 12:29:38.556275 +[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/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 245 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 429 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 498 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 14 +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 15 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 16 -n "$datos_entrada" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 17 -n "$data" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 18 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 19 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 20 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_remove -i 21 -d 390016 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 22 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 23 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 24 -n "$datos_entrada" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 25 -n "$data" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 26 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 27 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 28 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 29 -n "$data[\"interior\"]" -p 0 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 30 +[39] [Step Debug] -> + +[39] Log closed at 2024-10-19 12:30:49.644105 + +[23] Log opened at 2024-10-19 12:30:59.980876 +[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/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 429 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 12 +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] Log closed at 2024-10-19 12:31:14.353104 + +[40] Log opened at 2024-10-19 12:31:50.926433 +[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/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 429 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[40] [Step Debug] <- run -i 12 +[40] [Step Debug] -> + +[40] [Step Debug] -> + +[40] Log closed at 2024-10-19 12:32:07.038683 + From 62a37060491279e2837a9f0c1db32845a8b10edd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Jim=C3=A9nez?= Date: Sat, 19 Oct 2024 20:26:52 +0200 Subject: [PATCH 3/7] cargando presu --- .../Presupuestos/Presupuestocliente.php | 83 +- .../Presupuestos/PresupuestoEntity.php | 2 + .../Models/Presupuestos/PresupuestoModel.php | 42 +- .../cliente/items/_datosGenerales.php | 2 +- .../presupuestoCliente/datosGenerales.js | 6 +- xdebug.log | 1259 +++++++++++++++++ 6 files changed, 1359 insertions(+), 35 deletions(-) diff --git a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php index 2194a775..16afd091 100755 --- a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php +++ b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php @@ -415,7 +415,24 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController if (!property_exists($coste_direccion, 'coste')) { - $return_data['errors']->envios = "No se ha podido calcular el coste de envío"; + + $errorModel = new ErrorPresupuesto(); + $data['direccion'] = $direccion; + $data['peso'] = $return_data['peso'][$i]; + $data['palets'] = $direccion['entregaPalets'] == 'true' ? 1 : 0; + $errorModel->insertError( + $id, + auth()->user()->id, + 'No se ha podido calcular el coste de envío', + $data + ); + $return_data = [ + 'errors' => (object) ([ + 'status' => 1 + ]), + ]; + return $return_data; + } else { $coste_envio += $coste_direccion->coste; } @@ -430,7 +447,22 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $coste_direccion = $this->getCosteEnvio(null, $return_data['peso'][$i], $tirada[$i], false)[0]; if (!property_exists($coste_direccion, 'coste')) { - $return_data['errors']->envios = "No se ha podido calcular el coste de envío"; + $errorModel = new ErrorPresupuesto(); + $data['direccion'] = 'Sin direccion'; + $data['peso'] = $return_data['peso'][$i]; + $data['palets'] = 'Sin direccion'; + $errorModel->insertError( + $id, + auth()->user()->id, + 'No se ha podido calcular el coste de envío', + $data + ); + $return_data = [ + 'errors' => (object) ([ + 'status' => 1 + ]), + ]; + return $return_data; } else { $coste_envio += $coste_direccion->coste; } @@ -658,7 +690,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController 'gramaje' => $gramaje, 'excluirRotativa' => $excluirRotativa, 'paginas' => $paginas, - 'paginasColor' => $paginas_color, + 'paginas_color' => $paginas_color, 'pos_paginas_color' => $posPaginasColor, 'paginas_color_consecutivas' => $paginasColorConsecutivas, 'papelInteriorDiferente' => $papelInteriorDiferente @@ -1341,7 +1373,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $gramaje = $datos_entrada['interior']['gramaje']; $excluirRotativa = $datos_entrada['interior']['excluirRotativa']; $paginas = $datos_entrada['interior']['paginas']; - $paginas_color = $datos_entrada['interior']['paginasColor']; + $paginas_color = $datos_entrada['interior']['paginas_color']; // Cubierta @@ -1432,6 +1464,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController 'status' => 1 ]), ]; + return $return_data; } $costeInterior = 0.0; @@ -1482,6 +1515,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController 'status' => 1 ]), ]; + return $return_data; } $costeInterior = 0.0; @@ -1514,20 +1548,21 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController } } - if ($costeInterior <= 0){ + if ($costeInterior <= 0) { $errorModel = new ErrorPresupuesto(); - $errorModel->insertError( - $datos_entrada['id'], - auth()->user()->id, - 'No se puede obtener el interior', - $input_data - ); - $return_data = [ - 'errors' => (object) ([ - 'status' => 1 - ]), - ]; + $errorModel->insertError( + $datos_entrada['id'], + auth()->user()->id, + 'No se puede obtener el interior', + $input_data + ); + $return_data = [ + 'errors' => (object) ([ + 'status' => 1 + ]), + ]; + return $return_data; } // Cubierta @@ -1575,6 +1610,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController 'status' => 1 ]), ]; + return $return_data; } // Acabados Cubierta $tarifaAcabadoCubierta = $this->obtenerTarifasAcabado($acabadosCubierta); @@ -1602,6 +1638,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController 'status' => 1 ]), ]; + return $return_data; } $coste_servicios += floatval($acabadoCubierta[0]->total); } @@ -1658,6 +1695,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController 'status' => 1 ]), ]; + return $return_data; } $lomo_sobrecubierta = $lomo + floatval($linea_sobrecubierta['mano']); @@ -1688,6 +1726,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController 'status' => 1 ]), ]; + return $return_data; } $coste_servicios += floatval($acabadoSobrecubierta[0]->total); @@ -1753,6 +1792,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController 'status' => 1 ]), ]; + return $return_data; } } } @@ -1792,6 +1832,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController 'status' => 1 ]), ]; + return $return_data; } @@ -1838,7 +1879,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController 'POD' => $POD, ]); array_push($serviciosAutomaticos, $resultado[0]); - + if ($resultado[0]->total <= 0) { $errorModel = new ErrorPresupuesto(); @@ -1853,6 +1894,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController 'status' => 1 ]), ]; + return $return_data; } $coste_servicios += floatval($resultado[0]->total); @@ -1866,7 +1908,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController 'tarifa_id' => $servicio, ]); array_push($serviciosAutomaticos, $resultado[0]); - if ($resultado[0]->precio <= 0){ + if ($resultado[0]->precio <= 0) { $errorModel = new ErrorPresupuesto(); $errorModel->insertError( @@ -1880,8 +1922,9 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController 'status' => 1 ]), ]; + return $return_data; } - + $coste_servicios += floatval($resultado[0]->precio); if ($extra_info) { @@ -1893,7 +1936,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController array_push($precio_u, round(($costeInterior + $coste_cubierta + $coste_sobrecubierta + $costeServiciosDefecto + $coste_servicios) / $tirada[$t], 4)); array_push($peso, round($peso_interior + $peso_cubierta + $peso_sobrecubierta + $peso_guardas, 2)); - + if ($extra_info) { $totalServicios -= $margenServicios; $porcentajeMargenServicios = $margenServicios / ($margenServicios + $totalServicios) * 100; diff --git a/ci4/app/Entities/Presupuestos/PresupuestoEntity.php b/ci4/app/Entities/Presupuestos/PresupuestoEntity.php index edecdb9b..8aa6103d 100755 --- a/ci4/app/Entities/Presupuestos/PresupuestoEntity.php +++ b/ci4/app/Entities/Presupuestos/PresupuestoEntity.php @@ -92,6 +92,7 @@ class PresupuestoEntity extends \CodeIgniter\Entity\Entity "is_duplicado" => false, 'paginas_color_consecutivas' => null, 'papel_interior_diferente' => null, + 'paginasCuadernillo' => null, ]; protected $casts = [ "cliente_id" => "int", @@ -159,5 +160,6 @@ class PresupuestoEntity extends \CodeIgniter\Entity\Entity "is_duplicado" => "boolean", 'paginas_color_consecutivas' => "boolean", 'papel_interior_diferente' => "boolean", + 'paginasCuadernillo' => "int", ]; } diff --git a/ci4/app/Models/Presupuestos/PresupuestoModel.php b/ci4/app/Models/Presupuestos/PresupuestoModel.php index b4484b49..08e314bd 100755 --- a/ci4/app/Models/Presupuestos/PresupuestoModel.php +++ b/ci4/app/Models/Presupuestos/PresupuestoModel.php @@ -129,6 +129,7 @@ class PresupuestoModel extends \App\Models\BaseModel "is_duplicado", 'paginas_color_consecutivas', 'papel_interior_diferente', + 'paginasCuadernillo', ]; protected $returnType = "App\Entities\Presupuestos\PresupuestoEntity"; @@ -412,6 +413,9 @@ class PresupuestoModel extends \App\Models\BaseModel 'papel_formato_ancho' => !$papel_formato_id ? $data['tamanio']['ancho'] : null, 'papel_formato_alto' => !$papel_formato_id ? $data['tamanio']['alto'] : null, 'titulo' => $data_cabecera['titulo'], + 'autor' => $data_cabecera['autor'], + 'ISBN' => $data_cabecera['isbn'], + 'coleccion' => $data_cabecera['coleccion'], 'referencia_cliente' => $data_cabecera['referenciaCliente'], 'paginas' => $data['interior']['paginas'], 'tirada' => $tirada, @@ -424,7 +428,7 @@ class PresupuestoModel extends \App\Models\BaseModel 'merma_cubierta' => $extra_info['merma'], 'paginasCuadernillo' => $data['paginasCuadernillo'], - 'pos_paginas_color' => $data['interior']['pos_paginas_color'], + 'comp_pos_paginas_color' => $data['interior']['pos_paginas_color'], 'paginas_color_consecutivas' => $data['interior']['paginas_color_consecutivas'], 'papel_interior_diferente' => $data['interior']['papelInteriorDiferente'], @@ -495,29 +499,45 @@ class PresupuestoModel extends \App\Models\BaseModel if (is_array($data)) { // -- INTERIOR -- // Si hay negro - if (intval($data['interior']['paginas']) > intval($data['interior']['paginasColor'])) { + if (intval($data['interior']['paginas']) > intval($data['interior']['paginas_color'])) { if ($data['isHq']) $key = 'bnhq'; else $key = 'bn'; + if (array_key_exists('id', $data['interior']['papel_generico'])) { + $papel_id = intval($data['interior']['papel_generico']['id']); + $gramaje = intval($data['interior']['gramaje']); + } else { + $papel_id = intval($data['interior']['papel_generico']['negro']['id']); + $gramaje = intval($data['interior']['gramaje']['negro']); + } + + $values[$key] = array( - 'paginas' => intval($data['interior']['paginas']) - intval(intval($data['interior']['paginasColor'])), - 'papel_id' => intval($data['interior']['papel_generico']['id']), - 'gramaje' => intval($data['interior']['gramaje']), + 'paginas' => intval($data['interior']['paginas']) - intval(intval($data['interior']['paginas_color'])), + 'papel_id' => $papel_id, + 'gramaje' => $gramaje, ); } // Si hay color - if (intval($data['interior']['paginasColor']) > 0) { + if (intval($data['interior']['paginas_color']) > 0) { if ($data['isHq']) $key = 'colorhq'; else $key = 'color'; + if (array_key_exists('id', $data['interior']['papel_generico'])) { + $papel_id = intval($data['interior']['papel_generico']['id']); + $gramaje = intval($data['interior']['gramaje']); + } else { + $papel_id = intval($data['interior']['papel_generico']['color']['id']); + $gramaje = intval($data['interior']['gramaje']['color']); + } $values[$key] = array( - 'paginas' => intval(intval($data['interior']['paginasColor'])), - 'papel_id' => intval($data['interior']['papel_generico']['id']), - 'gramaje' => intval($data['interior']['gramaje']), + 'paginas' => intval(intval($data['interior']['paginas_color'])), + 'papel_id' => $papel_id, + 'gramaje' => $gramaje, ); } @@ -555,7 +575,7 @@ class PresupuestoModel extends \App\Models\BaseModel $builder = $this->db ->table($this->table . " t1") ->select( - "t1.id AS numero, t1.tipo_impresion_id as tipo, t1.tirada AS unidades, t1.total_aceptado as total, t1.paginas AS paginas, + "t1.id AS numero, t1.tipo_impresion_id as tipo, t1.tirada AS unidades, t1.total_aceptado as total, t1.paginas AS paginas, t1.titulo AS titulo, t1.autor AS autor, t1.isbn AS isbn, t1.papel_formato_id AS papel_formato_id, t1.papel_formato_personalizado AS papel_formato_personalizado, t1.papel_formato_ancho AS papel_formato_ancho, t1.papel_formato_alto AS papel_formato_alto, @@ -563,7 +583,7 @@ class PresupuestoModel extends \App\Models\BaseModel t3.codigo AS codigo_encuadernacion, t1.solapas AS solapas_cubierta, CAST(t1.solapas_ancho AS INT) AS solapas_ancho_cubierta, t1.solapas_sobrecubierta AS solapas_sobrecubierta, CAST(t1.solapas_ancho_sobrecubierta AS INT) AS solapas_ancho_sobrecubierta," - ); + ); $builder->join("lg_papel_formato t2", "t1.papel_formato_id = t2.id", "left"); $builder->join("tipos_presupuestos t3", "t1.tipo_impresion_id = t3.id", "left"); $builder->where("t1.is_deleted", 0); diff --git a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/items/_datosGenerales.php b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/items/_datosGenerales.php index ace18543..35ef7f60 100644 --- a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/items/_datosGenerales.php +++ b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/items/_datosGenerales.php @@ -16,7 +16,7 @@ - +
diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js index e9a9e7cc..d1a400ed 100644 --- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js +++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js @@ -354,11 +354,11 @@ class DatosGenerales { if (datos.tirada4) this.tirada4.val(parseInt(datos.tirada4)); - if (datos.checkFormatoPersonalizado) { + if (datos.papelFormatoPersonalizado) { this.checkFormatoPersonalizado.prop(':checked', datos.checkFormatoPersonalizado); this.checkFormatoPersonalizado.trigger('change'); - this.papel_formato_alto.val(datos.papelFormatoAlto); - this.papel_formato_ancho.val(datos.papelFormatoAncho); + this.altoPersonalizado.val(datos.papelFormatoAlto); + this.anchoPersonalizado.val(datos.papelFormatoAncho); } else { this.formatoLibro.setOption(datos.papelFormatoId, datos.papelFormatoNombre); diff --git a/xdebug.log b/xdebug.log index a6941d30..6421dd12 100644 --- a/xdebug.log +++ b/xdebug.log @@ -60343,3 +60343,1262 @@ Stack trace: [40] Log closed at 2024-10-19 12:32:07.038683 +[22] Log opened at 2024-10-19 17:47:07.528385 +[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-19 17:47:08.600617 + +[22] Log opened at 2024-10-19 17:47:08.615809 +[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-19 17:47:09.611121 + +[22] Log opened at 2024-10-19 17:47:09.685317 +[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-19 17:47:10.349559 + +[25] Log opened at 2024-10-19 17:47:10.472328 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-19 17:47:11.394702 + +[25] Log opened at 2024-10-19 17:47:12.010140 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-19 17:47:13.511285 + +[25] Log opened at 2024-10-19 17:47:13.520658 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-19 17:47:14.712897 + +[25] Log opened at 2024-10-19 17:47:14.766853 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-19 17:47:15.413613 + +[25] Log opened at 2024-10-19 17:47:15.485210 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-10-19 17:47:15.505736 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-19 17:47:16.396013 + +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-19 17:47:17.019941 + +[25] Log opened at 2024-10-19 17:47:18.220000 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-19 17:47:19.957285 + +[25] Log opened at 2024-10-19 17:47:20.031404 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-10-19 17:47:20.038438 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-19 17:47:20.696880 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-19 17:47:21.291919 + +[32] Log opened at 2024-10-19 17:47:21.332270 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] Log opened at 2024-10-19 17:47:21.343767 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-10-19 17:47:21.346750 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-19 17:47:22.337882 + +[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. +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-10-19 17:47:22.917625 + +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-19 17:47:23.270239 + +[28] Log opened at 2024-10-19 17:52:45.868264 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-19 17:52:47.558852 + +[28] Log opened at 2024-10-19 17:52:47.658073 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] Log opened at 2024-10-19 17:52:47.743248 +[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. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-19 17:52:48.311335 + +[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-19 17:52:48.960233 + +[22] Log opened at 2024-10-19 17:52:48.990967 +[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-19 17:52:48.997950 +[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. +[27] Log opened at 2024-10-19 17:52:49.003047 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step 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). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-19 17:52:50.003330 + +[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. +[27] [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-19 17:52:50.670741 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-19 17:52:51.026315 + +[32] Log opened at 2024-10-19 17:52:59.256517 +[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-19 17:53:00.511711 + +[32] Log opened at 2024-10-19 17:53:00.570389 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-10-19 17:53:00.645954 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-10-19 17:53:00.697083 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log opened at 2024-10-19 17:53:00.826020 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[28] Log opened at 2024-10-19 17:53:00.879732 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log opened at 2024-10-19 17:53:01.054155 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log opened at 2024-10-19 17:53:01.159880 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [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). +[23] Log opened at 2024-10-19 17:53:01.472232 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-10-19 17:53:01.605842 +[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). +[27] Log opened at 2024-10-19 17:53:01.688907 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-10-19 17:53:01.716826 + +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] 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. +[32] Log opened at 2024-10-19 17:53:01.910911 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] Log opened at 2024-10-19 17:53:02.055223 +[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. +[24] [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-19 17:53:02.100082 + +[25] Log opened at 2024-10-19 17:53:02.101108 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[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. +[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). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-19 17:53:02.472432 + +[24] Log opened at 2024-10-19 17:53:02.473273 +[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. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-10-19 17:53:02.838051 + +[35] Log opened at 2024-10-19 17:53:02.839123 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] 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 opened at 2024-10-19 17:53:03.056896 +[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. +[38] Log opened at 2024-10-19 17:53:03.057132 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-19 17:53:03.226521 + +[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). +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-10-19 17:53:03.606971 + +[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. +[23] [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-19 17:53:03.977672 + +[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. +[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). +[23] Log closed at 2024-10-19 17:53:04.369785 + +[22] [Step Debug] 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. +[27] [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-19 17:53:04.755085 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-19 17:53:05.142537 + +[32] [Step Debug] 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-19 17:53:05.542070 + +[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. +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-19 17:53:05.952851 + +[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. +[24] [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-19 17:53:06.341977 + +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-19 17:53:06.726258 + +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] Log closed at 2024-10-19 17:53:07.109598 + +[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. +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-10-19 17:53:07.511500 + +[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-19 17:53:07.900862 + +[22] Log opened at 2024-10-19 17:53:56.394879 +[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-19 17:53:57.652827 + +[27] Log opened at 2024-10-19 17:54:07.423583 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-19 17:54:08.632727 + +[36] Log opened at 2024-10-19 17:55:51.419452 +[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-19 17:56:06.527653 + +[25] Log opened at 2024-10-19 17:56:12.298536 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-19 17:56:13.423499 + +[25] Log opened at 2024-10-19 17:56:15.851620 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-19 17:56:16.998037 + +[25] Log opened at 2024-10-19 17:56:17.384357 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-19 17:56:18.588246 + +[25] Log opened at 2024-10-19 17:56:19.737721 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-19 17:56:20.872529 + +[25] Log opened at 2024-10-19 17:56:20.902489 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-19 17:56:36.476559 + +[24] Log opened at 2024-10-19 17:56:48.267167 +[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-19 17:56:49.479358 + +[35] Log opened at 2024-10-19 17:57:23.396054 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-10-19 17:57:24.688484 + +[37] Log opened at 2024-10-19 17:57:41.193031 +[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] [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-19 17:57:58.933681 + +[38] Log opened at 2024-10-19 17:58:31.879511 +[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] [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-19 17:58:49.816853 + +[23] Log opened at 2024-10-19 17:58:53.169316 +[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] [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-19 17:59:08.260616 + +[27] Log opened at 2024-10-19 18:02:05.692871 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 429 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 514 +[27] [Step Debug] -> + +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[27] [Step Debug] <- run -i 12 +[27] [Step Debug] -> + +[27] Log closed at 2024-10-19 18:02:22.102195 + +[32] Log opened at 2024-10-19 18:02:26.011868 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 429 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 514 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 12 +[32] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 13 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 14 -n "$datos_entrada" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 15 -n "$data" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 16 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 17 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 20 -n "$data" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 21 -n "$data" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 22 -n "$data[\"interior\"]" -p 0 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 23 +[32] [Step Debug] -> + +[32] Log closed at 2024-10-19 18:03:04.666072 + +[36] Log opened at 2024-10-19 18:04:18.942458 +[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] [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-19 18:04:34.775135 + +[25] Log opened at 2024-10-19 18:04:58.730469 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [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-19 18:05:13.758752 + +[37] Log opened at 2024-10-19 18:08:33.691100 +[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] [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-19 18:08:49.388458 + +[38] Log opened at 2024-10-19 18:09:26.929843 +[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-19 18:09:42.999859 + +[38] Log opened at 2024-10-19 18:09:43.057444 +[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-19 18:09:45.779525 + +[38] Log opened at 2024-10-19 18:09:45.865021 +[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-19 18:09:45.879838 +[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] [Step 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] 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-19 18:09:46.528254 + +[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-19 18:09:47.054527 + +[23] Log opened at 2024-10-19 18:09:47.082113 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-10-19 18:09:47.087243 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-10-19 18:09:47.091280 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] 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. +[27] [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-19 18:09:48.149378 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-19 18:09:48.504893 + +[22] Log opened at 2024-10-19 18:09:48.546607 +[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] 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). +[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-19 18:09:49.138920 + +[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-19 18:09:49.769170 + +[32] Log opened at 2024-10-19 18:21:48.230052 +[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-19 18:21:50.974183 + +[36] Log opened at 2024-10-19 18:21:51.089299 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-10-19 18:21:51.096948 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-10-19 18:21:51.756313 + +[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-19 18:21:52.271334 + +[36] Log opened at 2024-10-19 18:21:52.305284 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-10-19 18:21:52.309509 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-10-19 18:21:52.316398 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [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-19 18:21:53.350413 + +[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-19 18:21:53.659871 + +[25] Log opened at 2024-10-19 18:21:53.705408 +[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] [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). +[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-19 18:21:54.307215 + +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-19 18:21:54.964599 + +[35] Log opened at 2024-10-19 18:22:30.580276 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-10-19 18:22:33.372682 + +[35] Log opened at 2024-10-19 18:22:33.456756 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] Log opened at 2024-10-19 18:22:33.472427 +[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. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-10-19 18:22:34.167653 + +[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-19 18:22:34.746233 + +[37] Log opened at 2024-10-19 18:22:34.802415 +[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. +[38] Log opened at 2024-10-19 18:22:34.811446 +[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. +[35] Log opened at 2024-10-19 18:22:34.812493 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[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). +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-19 18:22:35.905173 + +[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. +[35] [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-19 18:22:36.515493 + +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-10-19 18:22:36.858597 + +[38] Log opened at 2024-10-19 18:22:36.912256 +[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-19 18:22:38.195469 + +[27] Log opened at 2024-10-19 18:23:10.132822 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-19 18:23:12.765125 + +[27] Log opened at 2024-10-19 18:23:12.885543 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] Log opened at 2024-10-19 18:23:12.888894 +[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. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-19 18:23:13.540983 + +[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-19 18:23:14.064868 + +[23] Log opened at 2024-10-19 18:23:14.109196 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-10-19 18:23:14.191899 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-10-19 18:23:14.207908 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-19 18:23:15.233690 + +[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. +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-19 18:23:15.835643 + +[32] [Step Debug] 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-19 18:23:16.187111 + +[22] Log opened at 2024-10-19 18:23:16.234967 +[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-19 18:23:17.476246 + +[36] Log opened at 2024-10-19 18:23:51.490398 +[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-19 18:23:54.136255 + +[36] Log opened at 2024-10-19 18:23:54.260538 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-10-19 18:23:54.288364 +[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] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-19 18:23:54.912818 + +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-19 18:23:55.451807 + +[25] Log opened at 2024-10-19 18:23:55.499835 +[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-19 18:23:55.582988 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[37] Log opened at 2024-10-19 18:23:55.582989 +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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. +[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). +[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-19 18:23:56.635537 + +[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. +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-19 18:23:57.411466 + +[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-19 18:23:57.755540 + +[37] Log opened at 2024-10-19 18:23:57.797893 +[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-19 18:23:59.033226 + +[38] Log opened at 2024-10-19 18:24:15.172039 +[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-19 18:24:17.987246 + +[38] Log opened at 2024-10-19 18:24:18.124881 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-10-19 18:24:18.193605 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-19 18:24:18.777353 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-19 18:24:19.415638 + +[32] Log opened at 2024-10-19 18:24:19.461957 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] Log opened at 2024-10-19 18:24:19.571282 +[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-19 18:24:19.578318 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-19 18:24:20.592718 + +[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. +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-10-19 18:24:21.244269 + +[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-19 18:24:21.613899 + +[32] Log opened at 2024-10-19 18:24:21.666027 +[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-19 18:24:23.039693 + +[37] Log opened at 2024-10-19 18:24:54.197366 +[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-19 18:24:56.971058 + +[37] Log opened at 2024-10-19 18:24:57.195378 +[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. +[35] Log opened at 2024-10-19 18:24:57.251964 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-19 18:24:57.862266 + +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-10-19 18:24:58.488460 + +[38] Log opened at 2024-10-19 18:24:58.542489 +[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-19 18:24:58.629653 +[27] Log opened at 2024-10-19 18:24:58.629652 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[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. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[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-19 18:24:59.683286 + +[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. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-10-19 18:25:00.335469 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-19 18:25:00.687656 + +[43] Log opened at 2024-10-19 18:25:00.739056 +[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-19 18:25:01.970030 + +[32] Log opened at 2024-10-19 18:26:23.561738 +[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-19 18:26:26.349461 + +[32] Log opened at 2024-10-19 18:26:26.590301 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] Log opened at 2024-10-19 18:26:26.679765 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] 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-19 18:26:27.256068 + +[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-19 18:26:27.919660 + +[37] Log opened at 2024-10-19 18:26:28.043068 +[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. +[35] Log opened at 2024-10-19 18:26:28.153302 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[36] Log opened at 2024-10-19 18:26:28.153322 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[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). +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-10-19 18:26:29.218803 + +[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. +[36] [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-19 18:26:29.811287 + +[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-19 18:26:30.160768 + +[44] Log opened at 2024-10-19 18:26:30.207167 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-10-19 18:26:31.370386 + From 2f83526d7e118f48944796735f56e2d9d1a11929 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Jim=C3=A9nez?= Date: Tue, 22 Oct 2024 08:43:21 +0200 Subject: [PATCH 4/7] comprobando presupuestos --- .../Presupuestos/Presupuestocliente.php | 245 +- .../Presupuestos/PresupuestoEntity.php | 3 + .../Configuracion/PapelGenericoModel.php | 16 + .../Configuracion/PapelImpresionModel.php | 18 + .../Models/Presupuestos/PresupuestoModel.php | 6 +- .../Tarifas/Acabados/TarifaAcabadoModel.php | 34 +- .../Services/PresupuestoClienteService.php | 4 +- ci4/app/Services/PresupuestoService.php | 20 +- .../cliente/items/_datosGenerales.php | 8 +- .../cliente/items/_disenioCubierta.php | 4 +- .../presupuestos/cliente/items/_resumen.php | 19 +- .../cliente/viewPresupuestoclienteForm.php | 4 +- .../presupuestoCliente/datosGenerales.js | 65 +- .../pages/presupuestoCliente/direcciones.js | 71 +- .../presupuestoCliente/disenioCubierta.js | 75 +- .../presupuestoCliente/disenioInterior.js | 100 +- .../presupuestoCliente/presupuestoCliente.js | 71 +- .../pages/presupuestoCliente/resumen.js | 59 +- httpdocs/assets/js/safekat/pages/preview.js | 1046 + xdebug.log | 35390 ++++++++++++++++ 20 files changed, 37035 insertions(+), 223 deletions(-) create mode 100644 httpdocs/assets/js/safekat/pages/preview.js diff --git a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php index 16afd091..724b41b5 100755 --- a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php +++ b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php @@ -101,6 +101,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $model_user = model('App\Models\Usuarios\UserModel'); $user = $model_user->find(auth()->user()->id); $clienteId = $user->cliente_id; + $POD = model('App\Models\Configuracion\ConfiguracionSistemaModel')->getPOD(); $this->viewData['breadcrumb'] = [ @@ -138,50 +139,11 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $user = $model_user->find(auth()->user()->id); $clienteId = $user->cliente_id; - $datosPresupuesto = (object) array(); - $datosPresupuesto->POD = model('App\Models\Configuracion\ConfiguracionSistemaModel')->getPOD(); - $datosPresupuesto->paisList = model('App\Models\Configuracion\PaisModel')->getAllForMenu('id, nombre', 'nombre', true); - $datosPresupuesto->papelFormatoList = $this->getPapelFormatoListItems($presupuestoEntity->papel_formato_id ?? null); - - $datosPresupuesto->papelInteriorNegro = model('App\Models\Configuracion\PapelGenericoModel')->getPapelForComparador('negro', false, false, false, false, true); - $datosPresupuesto->papelInteriorNegroHq = model('App\Models\Configuracion\PapelGenericoModel')->getPapelForComparador('negrohq', false, false, false, false, true); - $datosPresupuesto->papelInteriorColor = model('App\Models\Configuracion\PapelGenericoModel')->getPapelForComparador('color', false, false, false, false, true); - $datosPresupuesto->papelInteriorColorHq = model('App\Models\Configuracion\PapelGenericoModel')->getPapelForComparador('colorhq', false, false, false, false, true); - - $datosPresupuesto->papelCubierta = model('App\Models\Configuracion\PapelGenericoModel')->getPapelForComparador('colorhq', true, false, false, false, true); - $datosPresupuesto->papelSobrecubierta = model('App\Models\Configuracion\PapelGenericoModel')->getPapelForComparador('colorhq', false, true, false, false, true); - $datosPresupuesto->papelGuardas = model('App\Models\Configuracion\PapelGenericoModel')->getPapelForComparador('colorhq', false, false, false, true, false); - - $datosPresupuesto->acabadosCubierta = $this->getAcabadosCubierta(); - $datosPresupuesto->acabadosSobrecubierta = $this->getAcabadosSobrecubierta(); - - $datosPresupuesto->tipo_libro = $this->getTipoLibro($presupuestoEntity->tipo_impresion_id ?? null); - $datosPresupuesto->color_impresion = - $this->getTipoInterior($presupuestoEntity->id ?? null); - $datosPresupuesto->tapa = $this->getTapa($presupuestoEntity->tipo_impresion_id ?? null); - - $datosPresupuesto->clienteList = $this->getClienteListItems($presupuestoEntity->cliente_id ?? null); - - $this->obtenerTiradas($presupuestoEntity); - $this->obtenerDatosPapel($presupuestoEntity); - $this->obtenerPaginasColor($presupuestoEntity); - $this->obtenerDireccionesEnvio($presupuestoEntity); - - // Si el presupuesto está confirmado, se generan los datos del resumen - if ($presupuestoEntity->estado_id == 2) { - $this->generarResumen($presupuestoEntity); - } - - $datosPresupuesto->paginasCuadernillo = [32, 28, 24, 20, 16]; - $presupuestoEntity->paginas_por_cuadernillo = $this->obtenerPaginasCuadernillo($presupuestoEntity); $this->viewData['formAction'] = 'edit'; $this->viewData['paisList'] = $this->getPaisListItems(); - $this->viewData['presupuestoEntity'] = $presupuestoEntity; - $this->viewData['datosPresupuesto'] = $datosPresupuesto; - $this->viewData['clienteId'] = $clienteId; $this->viewData['POD'] = model('App\Models\Configuracion\ConfiguracionSistemaModel')->getPOD(); // Si se ha llamado a esta funcion porque se ha duplicado el presupuesto @@ -323,6 +285,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $direcciones = $reqData['direcciones'] ?? []; $tipo_impresion_id = $this->getTipoImpresion($tipo, $cubierta['tipoCubierta']); + $lomoRedondo = $cubierta['lomoRedondo'] ?? 0; if ($papelInteriorDiferente) { $papel['negro'] = $modelPapelGenerico->getIdFromCode($interior['papelInterior']['negro']); @@ -351,6 +314,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController 'carasCubierta' => intval($cubierta['carasImpresion'] ?? 0), 'solapasCubierta' => intval($cubierta['solapas'] ?? 0), 'acabadosCubierta' => $cubierta['acabados'] ?? 0, + 'lomoRedondo' => $lomoRedondo, ]; // Sobrecubierta @@ -369,7 +333,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $datos_guardas = [ 'papel' => $modelPapelGenerico->getIdFromCode($guardas['papel']), 'gramaje' => intval($guardas['gramaje']), - 'caras' => intval($guardas['guardasImpresas']), + 'caras' => intval($guardas['caras']), ]; } else $datos_guardas = false; @@ -393,6 +357,18 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController ); $return_data = $this->calcular_presupuesto($datos_presupuesto, 0, false); //TRUE FOR DEBUG + if(array_key_exists('errors', $return_data)){ + if($return_data['errors']->status == 1){ + $return_data = [ + 'errors' => (object) ([ + 'status' => 1 + ]), + ]; + return $return_data; + } + + } + if (array_key_exists('exception', $return_data)) { return $this->failServerError( $return_data['exception'] . ' - ' . @@ -415,7 +391,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController if (!property_exists($coste_direccion, 'coste')) { - + $errorModel = new ErrorPresupuesto(); $data['direccion'] = $direccion; $data['peso'] = $return_data['peso'][$i]; @@ -432,7 +408,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController ]), ]; return $return_data; - + } else { $coste_envio += $coste_direccion->coste; } @@ -448,21 +424,21 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController if (!property_exists($coste_direccion, 'coste')) { $errorModel = new ErrorPresupuesto(); - $data['direccion'] = 'Sin direccion'; - $data['peso'] = $return_data['peso'][$i]; - $data['palets'] = 'Sin direccion'; - $errorModel->insertError( - $id, - auth()->user()->id, - 'No se ha podido calcular el coste de envío', - $data - ); - $return_data = [ - 'errors' => (object) ([ - 'status' => 1 - ]), - ]; - return $return_data; + $data['direccion'] = 'Sin direccion'; + $data['peso'] = $return_data['peso'][$i]; + $data['palets'] = 'Sin direccion'; + $errorModel->insertError( + $id, + auth()->user()->id, + 'No se ha podido calcular el coste de envío', + $data + ); + $return_data = [ + 'errors' => (object) ([ + 'status' => 1 + ]), + ]; + return $return_data; } else { $coste_envio += $coste_direccion->coste; } @@ -662,6 +638,8 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $isColor = intval($reqData['isColor']) ?? 0; $isHq = intval($reqData['isHq']) ?? 0; + $prototipo = intval($reqData['prototipo']) ?? 0; + $interior = $reqData['interior'] ?? []; $cubierta = $reqData['cubierta'] ?? []; $sobrecubierta = $reqData['sobrecubierta'] ?? []; @@ -704,6 +682,8 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController 'carasCubierta' => intval($cubierta['carasImpresion'] ?? 0), 'solapasCubierta' => intval($cubierta['solapas'] ?? 0), 'acabadosCubierta' => $cubierta['acabados'] ?? 0, + 'lomoRedondo' => $cubierta['lomoRedondo'] ?? 0, + 'cabezada' => $cubierta['cabezada'] ?? 'WHI', ]; // Sobrecubierta @@ -722,7 +702,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $datos_guardas = [ 'papel' => $modelPapelGenerico->getIdFromCode($guardas['papel']), 'gramaje' => intval($guardas['gramaje']), - 'caras' => intval($guardas['guardasImpresas']), + 'caras' => intval($guardas['caras']), ]; } else $datos_guardas = false; @@ -735,7 +715,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController 'isColor' => $isColor, 'isHq' => $isHq, 'paginasCuadernillo' => $paginasCuadernillo, - + 'interior' => $interior, 'cubierta' => $cubierta, 'sobrecubierta' => $sobrecubierta, @@ -855,6 +835,8 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $datos_presupuesto['cubierta']['acabadosCubierta']['id'] = 0; } + $datos_presupuesto['prototipo'] = $prototipo; + $id = $model_presupuesto->insertarPresupuestoCliente( $id, $selected_tirada, @@ -937,14 +919,15 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $presupuesto = $this->model->find($id); $data = []; if ($presupuesto) { + $data['lc'] = $presupuesto->lomo_cubierta; + $data['lsc'] = $presupuesto->lomo_sobrecubierta; $data['datosGenerales']['titulo'] = $presupuesto->titulo; $data['datosGenerales']['autor'] = $presupuesto->autor; $data['datosGenerales']['isbn'] = $presupuesto->isbn; $data['datosGenerales']['coleccion'] = $presupuesto->coleccion; $data['datosGenerales']['referenciaCliente'] = $presupuesto->referencia_cliente; $data['datosGenerales']['paginas'] = $presupuesto->paginas; - $data['datosGenerales']['posPaginasColor'] = $presupuesto->paginas_color; - $data['datosGenerales']['paginasCuadernillo'] = $presupuesto->paginas_cuadernillo; + $data['datosGenerales']['paginasCuadernillo'] = $presupuesto->paginasCuadernillo; $data['datosGenerales']['tirada'] = $presupuesto->tirada; $data['datosGenerales']['ivaReducido'] = $presupuesto->iva_reducido; $data['datosGenerales']['excluirRotativa'] = $presupuesto->excluir_rotativa; @@ -958,29 +941,34 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $data['datosGenerales']['papelFormatoAncho'] = $presupuesto->papel_formato_ancho; $data['datosGenerales']['papelFormatoAlto'] = $presupuesto->papel_formato_alto; + $data['datosGenerales']['posPaginasColor'] = $presupuesto->comp_pos_paginas_color; $data['datosGenerales']['papelInteriorDiferente'] = $presupuesto->papel_interior_diferente; + $data['datosGenerales']['paginasColorConsecutivas'] = $presupuesto->paginas_color_consecutivas; - $data['tiradasPrecio'] = [ - (object) [ - 'tirada' => $presupuesto->tirada, - 'precio' => $presupuesto->total_confirmado, - 'precio_u' => $presupuesto->total_precio_unidad, - ] - ]; + $data['datosGenerales']['tipo'] = $this->getTipoLibro($presupuesto->tipo_impresion_id ?? null); + $data['datosGenerales']['prototipo'] = $presupuesto->prototipo; - $tiradas_alternativas = json_decode($presupuesto->tirada_alternativa_json_data); - for ($i = 0; $i < count($tiradas_alternativas); $i++) { - $tirada = $tiradas_alternativas[$i]; - $data['datosGenerales']['tirada' . ($i + 2)] = $tirada->tirada; - array_push($data['tiradasPrecio'], (object) [ - 'tirada' => intval($tirada->tirada), - 'precio' => $tirada->total_pedido, - 'precio_u' => $tirada->precio_unidad, - ]); - } - usort($data['tiradasPrecio'], function ($a, $b) { - return $a->tirada <=> $b->tirada; - }); + $datos_papel = $this->obtenerDatosPapel($presupuesto->id); + $data['interior'] = $datos_papel['interior'] ? $datos_papel['interior'] : []; + + $data['cubierta'] = $datos_papel['cubierta'] ? $datos_papel['cubierta'] : []; + $data['cubierta']['tapa'] = $this->obtenerTipoTapa($presupuesto->tipo_impresion_id ?? null); + $data['cubierta']['lomoRedondo'] = $presupuesto->lomo_redondo ? 1 : 0; + $data['cubierta']['solapas'] = $presupuesto->solapas ? 1 : 0; + $data['cubierta']['solapas_ancho'] = $presupuesto->solapas_ancho; + $data['cubierta']['cabezada'] = $presupuesto->cabezada; + $modelAcabado = model("App\Models\Tarifas\Acabados\TarifaAcabadoModel"); + $data['cubierta']['plastificado'] = $modelAcabado->getCodeFromId($presupuesto->acabado_cubierta_id); + $data['cubierta']['barniz'] = $modelAcabado->getCodeFromId($presupuesto->barniz_cubierta_id); + $data['cubierta']['estampado'] = $modelAcabado->getCodeFromId($presupuesto->estampado_cubierta_id); + $data['cubierta']['retractilado'] = $presupuesto->retractilado ? 1 : 0; + + $data['sobrecubierta'] = array_key_exists('sobrecubierta', $datos_papel) ? $datos_papel['sobrecubierta'] : []; + $data['sobrecubierta']['solapas'] = $presupuesto->solapas_sobrecubierta ? 1 : 0; + $data['sobrecubierta']['solapas_ancho'] = $presupuesto->solapas_ancho_sobrecubierta; + $data['sobrecubierta']['plastificado'] = $modelAcabado->getCodeFromId($presupuesto->acabado_sobrecubierta_id); + + $data['guardas'] = array_key_exists('guardas', $datos_papel) ? $datos_papel['guardas'] : []; $modelLinea = new PresupuestoLineaModel(); $lineas = $modelLinea->where('presupuesto_id', $id)->findAll(); @@ -988,7 +976,15 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController [$data['datosGenerales']['paginasNegro'], $data['datosGenerales']['paginasColor']] = $this->getPaginas($lineas); + $data['direcciones'] = $this->obtenerDireccionesEnvio($id, $presupuesto->cliente_id); + $tiradas_alternativas = json_decode($presupuesto->tirada_alternativa_json_data); + for ($i = 0; $i < count($tiradas_alternativas); $i++) { + $tirada = $tiradas_alternativas[$i]; + $data['datosGenerales']['tirada' . ($i + 2)] = $tirada->tirada; + + } + return $this->respond([ 'status' => 1, 'data' => $data @@ -1382,6 +1378,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $carasCubierta = $datos_entrada['cubierta']['carasCubierta']; $solapasCubierta = $datos_entrada['cubierta']['solapasCubierta']; $acabadosCubierta = $datos_entrada['cubierta']['acabadosCubierta'] ?? []; + $lomoRedondo = $datos_entrada['cubierta']['lomoRedondo']; // Sobrecubierta $sobreCubierta = $datos_entrada["sobrecubierta"] ?? null; @@ -1576,6 +1573,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $input_data['isColor'] = 1; $input_data['isHq'] = 1; $input_data['uso'] = 'cubierta'; + $input_data['lomoRedondo'] = $lomoRedondo; $cubierta = PresupuestoClienteService::obtenerCubierta($input_data); $coste_cubierta = 0.0; @@ -2168,6 +2166,19 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController } else return ''; } + + protected function obtenerTipoTapa($tipo_impresion_id) + { + $model = model('App\Models\Configuracion\TipoPresupuestoModel'); + $data = $model->get_isTapaDura($tipo_impresion_id); + if ($data) { + return 'dura'; + } else { + return 'blanda'; + } + } + + protected function getTipoInterior($presupuestoId) { @@ -2250,18 +2261,18 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController } } - protected function obtenerDireccionesEnvio($presupuestoEntity) + protected function obtenerDireccionesEnvio($id, $cliente_id) { $model = model('App\Models\Presupuestos\PresupuestoDireccionesModel'); $model_direcciones = model('App\Models\Clientes\ClienteDireccionesModel'); $model_pais = model('App\Models\Configuracion\PaisModel'); - $direcciones = $model->where('presupuesto_id', $presupuestoEntity->id)->findAll(); + $direcciones = $model->where('presupuesto_id', $id)->findAll(); $result = []; $temp = []; for ($i = 0; $i < count($direcciones); $i++) { $direccion_id = $model_direcciones->getIdForPresupuestoCliente( - $presupuestoEntity->cliente_id, + $cliente_id, $direcciones[$i]->att, $direcciones[$i]->email, $direcciones[$i]->direccion, @@ -2271,49 +2282,56 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController ); if (count($direccion_id) > 0) { $temp = $direcciones[$i]->toArray(); - $temp['pais'] = $model_pais->where('id', $direcciones[$i]->pais_id)->first()->nombre; - $temp['direccion_id'] = $direccion_id[0]->id; - array_push($result, $temp); + array_push($result, [ + 'id' => $temp['id'], + 'unidades' => $temp['cantidad'], + 'palets' => $temp['entregaPieCalle'], + ]); } } if (count($result) > 0) - $presupuestoEntity->direcciones_envio = $result; + return $result; + else + return []; } - protected function obtenerDatosPapel($presupuestoEntity) + protected function obtenerDatosPapel($presupuesto_id) { - $id = $presupuestoEntity->id; + $return_data = []; $model = model('App\Models\Presupuestos\PresupuestoLineaModel'); - $data = $model->where('presupuesto_id', $id)->findAll(); + $data = $model->where('presupuesto_id', $presupuesto_id)->findAll(); + + $modelPapelGenerico = model('App\Models\Configuracion\PapelGenericoModel'); + if (count($data) > 0) { foreach ($data as $linea) { - // Se coje el primer papel que se encuentre para el interior - // para presupuestos del cliente sólo se escoje un papel para el interior - if (strpos($linea->tipo, "bn") !== false || strpos($linea->tipo, "color") !== false) { - $presupuestoEntity->papel_interior = $linea->papel_id; - $presupuestoEntity->gramaje_interior = $linea->gramaje; - } - // Si es cubierta - else if (strpos($linea->tipo, "cubierta") !== false && strpos($linea->tipo, "sobrecubierta") === false) { - $presupuestoEntity->papel_cubierta = $linea->papel_id; - $presupuestoEntity->gramaje_cubierta = $linea->gramaje; - $presupuestoEntity->paginas_cubierta = $linea->paginas; - } - // Si es sobrecubierta - else if (strpos($linea->tipo, "sobrecubierta") !== false) { - $presupuestoEntity->papel_sobrecubierta = $linea->papel_id; - $presupuestoEntity->gramaje_sobrecubierta = $linea->gramaje; - $presupuestoEntity->paginas_sobrecubierta = $linea->paginas; - } - // Si es guardas - else if (strpos($linea->tipo, "guardas") !== false) { - $presupuestoEntity->papel_guardas = $linea->papel_id; - $presupuestoEntity->paginas_guardas = $linea->paginas; + if ($linea->tipo == 'lp_bn' || $linea->tipo == 'lp_bnhq' || $linea->tipo == 'lp_rot_bn') { + $return_data['interior']['negro']['tipo'] = $linea->tipo == 'lp_bn' || $linea->tipo == 'lp_rot_bn' ? 'negroEstandar' : 'negroPremium'; + $return_data['interior']['negro']['papel'] = $modelPapelGenerico->getCodeFromId($linea->papel_id); + $return_data['interior']['negro']['gramaje'] = $linea->gramaje; + } else if ($linea->tipo == 'lp_color' || $linea->tipo == 'lp_colorhq' || $linea->tipo == 'lp_rot_color') { + $return_data['interior']['color']['tipo'] = $linea->tipo == 'lp_color' || $linea->tipo == 'lp_rot_color' ? 'colorEstandar' : 'colorPremium'; + $return_data['interior']['color']['papel'] = $modelPapelGenerico->getCodeFromId($linea->papel_id); + $return_data['interior']['color']['gramaje'] = $linea->gramaje; + } else if ($linea->tipo == 'lp_cubierta') { + $return_data['cubierta']['papel'] = $modelPapelGenerico->getCodeFromId($linea->papel_id); + $return_data['cubierta']['gramaje'] = $linea->gramaje; + $return_data['cubierta']['paginas'] = $linea->paginas; + } else if ($linea->tipo == 'lp_sobrecubierta') { + $return_data['sobrecubierta']['papel'] = $modelPapelGenerico->getCodeFromId($linea->papel_id); + $return_data['sobrecubierta']['gramaje'] = $linea->gramaje; + $return_data['sobrecubierta']['paginas'] = $linea->paginas; + } else if ($linea->tipo == 'lp_guardas') { + $return_data['guardas']['papel'] = $modelPapelGenerico->getCodeFromId($linea->papel_id); + $return_data['guardas']['gramaje'] = $linea->gramaje; + $return_data['guardas']['paginas'] = $linea->paginas; } } } + + return $return_data; } protected function generarResumen($presupuestoEntity) @@ -2469,4 +2487,5 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController return [$paginasNegro, $paginasColor]; } + } diff --git a/ci4/app/Entities/Presupuestos/PresupuestoEntity.php b/ci4/app/Entities/Presupuestos/PresupuestoEntity.php index 8aa6103d..3969835e 100755 --- a/ci4/app/Entities/Presupuestos/PresupuestoEntity.php +++ b/ci4/app/Entities/Presupuestos/PresupuestoEntity.php @@ -93,6 +93,8 @@ class PresupuestoEntity extends \CodeIgniter\Entity\Entity 'paginas_color_consecutivas' => null, 'papel_interior_diferente' => null, 'paginasCuadernillo' => null, + 'lomo_redondo' => null, + 'cabezada' => null, ]; protected $casts = [ "cliente_id" => "int", @@ -161,5 +163,6 @@ class PresupuestoEntity extends \CodeIgniter\Entity\Entity 'paginas_color_consecutivas' => "boolean", 'papel_interior_diferente' => "boolean", 'paginasCuadernillo' => "int", + 'lomo_redondo' => "boolean", ]; } diff --git a/ci4/app/Models/Configuracion/PapelGenericoModel.php b/ci4/app/Models/Configuracion/PapelGenericoModel.php index 9b27c5a2..49f4a7a1 100755 --- a/ci4/app/Models/Configuracion/PapelGenericoModel.php +++ b/ci4/app/Models/Configuracion/PapelGenericoModel.php @@ -76,6 +76,22 @@ class PapelGenericoModel extends \App\Models\BaseModel return $data; } + + public function getCodeFromId($id=0){ + $builder = $this->db + ->table($this->table . " t1") + ->select( + "t1.code AS code" + ) + ->where("t1.id", $id) + ->where("t1.is_deleted", 0); + $data = $builder->get()->getFirstRow(); + // se convierte a de stdClass a array + $data = json_decode(json_encode($data), true); + return $data; + } + + /** * Get resource data. * diff --git a/ci4/app/Models/Configuracion/PapelImpresionModel.php b/ci4/app/Models/Configuracion/PapelImpresionModel.php index c5da113b..eac4807c 100755 --- a/ci4/app/Models/Configuracion/PapelImpresionModel.php +++ b/ci4/app/Models/Configuracion/PapelImpresionModel.php @@ -322,4 +322,22 @@ class PapelImpresionModel extends \App\Models\BaseModel return $builder->orderBy("t1.id", "asc")->get()->getResultObject(); } + + public function getPapelGenericoCode($papel_id = 0){ + $builder = $this->db + ->table($this->table . " t1") + ->select("t2.code AS code") + ->join("lg_papel_generico t2", "t1.papel_generico_id = t2.id", "left") + ->where("t1.id", $papel_id) + ->where("t1.is_deleted", 0) + ->where("t1.isActivo", 1) + ->where("t2.is_deleted", 0); + + $result = $builder->get()->getResultObject(); + if(count($result) > 0){ + return $result[0]->code; + } + else + return ""; + } } diff --git a/ci4/app/Models/Presupuestos/PresupuestoModel.php b/ci4/app/Models/Presupuestos/PresupuestoModel.php index 08e314bd..f242d25e 100755 --- a/ci4/app/Models/Presupuestos/PresupuestoModel.php +++ b/ci4/app/Models/Presupuestos/PresupuestoModel.php @@ -130,6 +130,8 @@ class PresupuestoModel extends \App\Models\BaseModel 'paginas_color_consecutivas', 'papel_interior_diferente', 'paginasCuadernillo', + 'lomo_redondo', + 'cabezada', ]; protected $returnType = "App\Entities\Presupuestos\PresupuestoEntity"; @@ -407,7 +409,7 @@ class PresupuestoModel extends \App\Models\BaseModel 'guardas' => in_array(62, $data['servicios']) ? 1 : 0, 'faja_color' => in_array(16, $data['servicios']) ? 1 : 0, 'ferro' => in_array(24, $data['servicios']) ? 1 : 0, - 'prototipo' => in_array(9, $data['servicios']) ? 1 : 0, + 'prototipo' => $data['prototipo'] ? 1 : 0, 'papel_formato_id' => is_null($papel_formato_id) ? 0 : $papel_formato_id->id, 'papel_formato_personalizado' => !$papel_formato_id ? 1 : 0, 'papel_formato_ancho' => !$papel_formato_id ? $data['tamanio']['ancho'] : null, @@ -420,6 +422,8 @@ class PresupuestoModel extends \App\Models\BaseModel 'paginas' => $data['interior']['paginas'], 'tirada' => $tirada, 'solapas' => $data['cubierta']['solapasCubierta'] == 0 ? 0 : 1, + 'lomo_redondo' => $data['cubierta']['lomoRedondo'] == 0 ? 0 : 1, + 'cabezada' => $data['cubierta']['cabezada'] == 0 ? 0 : 1, 'solapas_ancho' => $data['cubierta']['solapasCubierta'] == 0 ? $data['cubierta']['solapasCubierta'] : 0, 'solapas_sobrecubierta' => !$data['sobrecubierta'] ? 0 : 1, 'solapas_ancho_sobrecubierta' => !$data['sobrecubierta'] ? 0 : $data['sobrecubierta']['solapas'], diff --git a/ci4/app/Models/Tarifas/Acabados/TarifaAcabadoModel.php b/ci4/app/Models/Tarifas/Acabados/TarifaAcabadoModel.php index eb1a2719..eac2ae8b 100644 --- a/ci4/app/Models/Tarifas/Acabados/TarifaAcabadoModel.php +++ b/ci4/app/Models/Tarifas/Acabados/TarifaAcabadoModel.php @@ -90,7 +90,7 @@ class TarifaAcabadoModel extends \App\Models\BaseModel //JJO $builder->where("t1.is_deleted", 0); - + return empty($search) ? $builder : $builder @@ -115,8 +115,9 @@ class TarifaAcabadoModel extends \App\Models\BaseModel return $builder->orderBy("t1.nombre", "asc")->get()->getResultObject(); } - public function getTarifaPresupuestoAcabado($tarifa_id, $tirada, $proveedor_id = -1){ - + public function getTarifaPresupuestoAcabado($tarifa_id, $tirada, $proveedor_id = -1) + { + $builder = $this->db ->table($this->table . " t1") ->select( @@ -129,18 +130,18 @@ class TarifaAcabadoModel extends \App\Models\BaseModel ->where("t1.is_deleted", 0) //->where("t1.mostrar_en_presupuesto", 1) ->where("t2.is_deleted", 0); - + $builder->where('t1.id =', $tarifa_id); $builder->where('t2.tirada_min <=', $tirada); $builder->where('t2.tirada_max >=', $tirada); - - if($proveedor_id != -1){ + + if ($proveedor_id != -1) { $builder->where('t2.proveedor_id', $proveedor_id); } return $builder->get()->getResultObject(); } - public function getNombreTarifaAcabado($id=-1) + public function getNombreTarifaAcabado($id = -1) { /* Todos los servicios de encuadernacion activas que se pueden usar en presupuestos @@ -185,4 +186,23 @@ class TarifaAcabadoModel extends \App\Models\BaseModel return $builder->orderBy("t1.id", "asc")->get()->getResultObject(); } + + public function getCodeFromId($id = 0) + { + + $builder = $this->db + ->table($this->table . " t1") + ->select( + "t1.code AS code" + ) + ->where("t1.id", $id) + ->where("t1.is_deleted", 0); + + $data = $builder->get()->getResultObject(); + if (count($data) > 0) { + return $data[0]->code; + } else { + return ""; + } + } } diff --git a/ci4/app/Services/PresupuestoClienteService.php b/ci4/app/Services/PresupuestoClienteService.php index 1dc5deb6..25a3a42c 100644 --- a/ci4/app/Services/PresupuestoClienteService.php +++ b/ci4/app/Services/PresupuestoClienteService.php @@ -77,6 +77,7 @@ class PresupuestoClienteService extends BaseService $isHq = $data['isHq']; $cliente_id = $data['cliente_id']; $paginas_color = $data['paginas_color']; + $lomoRedondo = $data['lomoRedondo']; $lineas_cubierta = []; @@ -91,7 +92,8 @@ class PresupuestoClienteService extends BaseService 'isColor' => $isColor, 'isHq' => $isHq, 'cliente_id' => $cliente_id, - 'a_favor_fibra' => $i + 'a_favor_fibra' => $i, + 'lomoRedondo' => $lomoRedondo ]); if (count($lineas) > 0) { diff --git a/ci4/app/Services/PresupuestoService.php b/ci4/app/Services/PresupuestoService.php index 781b8127..dcf1fa87 100755 --- a/ci4/app/Services/PresupuestoService.php +++ b/ci4/app/Services/PresupuestoService.php @@ -838,9 +838,13 @@ class PresupuestoService extends BaseService * Devuelve el ancho de la cubierta/sobrecubierta, incluido el lomo. * El $uso tiene que ser "cubierta" o "sobrecubierta" */ - public static function getAnchoTotalExteriores($uso = "cubierta", $tipo_impresion_id = 1, $datosPedido = null, $maquina_id = -1) + public static function getAnchoTotalExteriores($uso = "cubierta", $tipo_impresion_id = 1, $datosPedido = null, $maquina_id = -1, $lomoRedondo = 0) { $ancho_total = 0; + $sangre_cubierta = self::SANGRE_FORMAS_CUBIERTA; + if($datosPedido->ancho > 210 || $datosPedido->alto > 297){ + $sangre_cubierta = 15; + } if ($datosPedido) { // Tapa blanda (cosido y fresado) @@ -861,8 +865,13 @@ class PresupuestoService extends BaseService // si es cubierta // se añade 7mm del ancho del cartón (2*3.5mm) por cada lado del lomo // más 7mm de vuelo+cajo por cada lado. Por último, 20mm de sangre por cada lado - if ($uso == "cubierta") - $ancho_total += (2 * 7 + 2 * self::SANGRE_FORMAS_CUBIERTA + 7); + if ($uso == "cubierta"){ + $ancho_total += (2 * 7 + 2 * $sangre_cubierta + 6); + if($lomoRedondo){ + $ancho_total += 6; + } + } + // si es sobrecubierta // Se añaden 5mm de sangre por cada lado + 2 * 7mm de vuelo portada y contraportada -> total 52 else @@ -893,7 +902,7 @@ class PresupuestoService extends BaseService // Tapa dura else{ // Se le suma 20mm de sangre por cada lado. Como son 2 hojas independientes, se multiplica por 4 - $ancho_total += (4 * self::SANGRE_FORMAS_CUBIERTA); + $ancho_total += (4 * $sangre_cubierta); } } else { @@ -1716,6 +1725,7 @@ class PresupuestoService extends BaseService $cliente_id = $input_data['cliente_id']; $datosTipolog = $input_data['datosTipolog'] ?? null; $a_favor_fibra = $datosPedido->a_favor_fibra ?? false; + $lomoRedondo = $input_data['lomoRedondo'] ?? 0; $tipo = $isColor ? ($isHq ? 'colorhq' : 'color') : ($isHq ? 'negrohq' : 'negro'); @@ -1747,7 +1757,7 @@ class PresupuestoService extends BaseService if ($uso == 'cubierta' || $uso == 'sobrecubierta') { - $datosPedido->anchoExteriores = PresupuestoService::getAnchoTotalExteriores($uso, $tipo_impresion_id, $datosPedido, $maquina->maquina_id); + $datosPedido->anchoExteriores = PresupuestoService::getAnchoTotalExteriores($uso, $tipo_impresion_id, $datosPedido, $maquina->maquina_id, $lomoRedondo); $datosPedido->altoExteriores = PresupuestoService::getAltoTotalExteriores($uso, $tipo_impresion_id, $datosPedido); } diff --git a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/items/_datosGenerales.php b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/items/_datosGenerales.php index 35ef7f60..4640397b 100644 --- a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/items/_datosGenerales.php +++ b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/items/_datosGenerales.php @@ -101,7 +101,7 @@
-
+
@@ -110,16 +110,16 @@
-