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] 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 +