diff --git a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php
index 58a75515..6fc12fa2 100755
--- a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php
+++ b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php
@@ -612,11 +612,10 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
$selected_tirada = $reqData['selectedTirada'] ?? 0;
$tamanio = $reqData['tamanio'];
$paginas = $reqData['paginas'] ?? 0;
- $paginas_color = $reqData['paginasColor'] ?? 0;
+
$posPaginasColor = $reqData['posPaginasColor'] ?? "";
- $papelInteriorDiferente = $reqData['papelInteriorDiferente'] ?? 0;
- $paginasColorConsecutivas = $reqData['paginasColorConsecutivas'] ?? 0;
- $prototipo = $reqData['prototipo'] ?? 0;
+ $paginasColorConsecutivas = $reqData['pagColorConsecutivas'] ?? 0;
+ $papelInteriorDiferente = $reqData['papelInteriorDiferente'] ?? 0;
$tipo = $reqData['tipo'];
@@ -654,8 +653,9 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
'gramaje' => $gramaje,
'excluirRotativa' => $excluirRotativa,
'paginas' => $paginas,
- 'paginas_color' => $paginas_color,
- 'papelInteriorDiferente' => $papelInteriorDiferente
+ 'pos_paginas_color' => $posPaginasColor,
+ 'paginas_color_consecutivas' => $paginasColorConsecutivas,
+ 'papel_interior_diferente' => $papelInteriorDiferente
];
diff --git a/ci4/app/Entities/Presupuestos/PresupuestoEntity.php b/ci4/app/Entities/Presupuestos/PresupuestoEntity.php
index d8ade0a6..edecdb9b 100755
--- a/ci4/app/Entities/Presupuestos/PresupuestoEntity.php
+++ b/ci4/app/Entities/Presupuestos/PresupuestoEntity.php
@@ -64,7 +64,7 @@ class PresupuestoEntity extends \CodeIgniter\Entity\Entity
"created_at" => null,
"updated_at" => null,
"comp_tipo_impresion" => null,
- "comp_pos_paginas_color" => null,
+ "pos_paginas_color" => null,
"total_coste_papel" => null,
"total_margen_papel" => null,
"total_margenPercent_papel" => null,
@@ -90,6 +90,8 @@ class PresupuestoEntity extends \CodeIgniter\Entity\Entity
"acabado_cubierta_id" => null,
"acabado_sobrecubierta_id" => null,
"is_duplicado" => false,
+ 'paginas_color_consecutivas' => null,
+ 'papel_interior_diferente' => null,
];
protected $casts = [
"cliente_id" => "int",
@@ -155,5 +157,7 @@ class PresupuestoEntity extends \CodeIgniter\Entity\Entity
"acabado_cubierta_id" => "int",
"acabado_sobrecubierta_id" => "int",
"is_duplicado" => "boolean",
+ 'paginas_color_consecutivas' => "boolean",
+ 'papel_interior_diferente' => "boolean",
];
}
diff --git a/ci4/app/Models/Presupuestos/BuscadorModel.php b/ci4/app/Models/Presupuestos/BuscadorModel.php
index 99caa4f5..e1df2343 100644
--- a/ci4/app/Models/Presupuestos/BuscadorModel.php
+++ b/ci4/app/Models/Presupuestos/BuscadorModel.php
@@ -80,7 +80,7 @@ class BuscadorModel extends \App\Models\BaseModel
"comparador_json_data",
"is_deleted",
"comp_tipo_impresion",
- "comp_pos_paginas_color",
+ "pos_paginas_color",
"total_coste_papel",
"total_margen_papel",
"total_margenPercent_papel",
diff --git a/ci4/app/Models/Presupuestos/PresupuestoModel.php b/ci4/app/Models/Presupuestos/PresupuestoModel.php
index bf03da21..ee35e651 100755
--- a/ci4/app/Models/Presupuestos/PresupuestoModel.php
+++ b/ci4/app/Models/Presupuestos/PresupuestoModel.php
@@ -96,7 +96,9 @@ class PresupuestoModel extends \App\Models\BaseModel
"comparador_json_data",
"is_deleted",
"comp_tipo_impresion",
- "comp_pos_paginas_color",
+ "pos_paginas_color",
+ "paginas_color_consecutivas",
+ "papel_interior_diferente",
"total_coste_papel",
"total_margen_papel",
"total_margenPercent_papel",
@@ -124,7 +126,9 @@ class PresupuestoModel extends \App\Models\BaseModel
"barniz_cubierta_id",
"estampado_cubierta_id",
"acabado_sobrecubierta_id",
- "is_duplicado"
+ "is_duplicado",
+ 'paginas_color_consecutivas',
+ 'papel_interior_diferente',
];
protected $returnType = "App\Entities\Presupuestos\PresupuestoEntity";
@@ -412,15 +416,20 @@ class PresupuestoModel extends \App\Models\BaseModel
'paginas' => $data['interior']['paginas'],
'tirada' => $tirada,
'solapas' => $data['cubierta']['solapasCubierta'] == 0 ? 0 : 1,
- 'solapas_ancho' => $data['cubierta']['solapasCubierta'] == 0? $data['cubierta']['solapasCubierta'] : 0,
+ 'solapas_ancho' => $data['cubierta']['solapasCubierta'] == 0 ? $data['cubierta']['solapasCubierta'] : 0,
'solapas_sobrecubierta' => !$data['sobrecubierta'] ? 0 : 1,
'solapas_ancho_sobrecubierta' => !$data['sobrecubierta'] ? 0 : $data['sobrecubierta']['solapas'],
'cosido' => $is_cosido,
'merma' => $extra_info['merma'],
'merma_cubierta' => $extra_info['merma'],
+ 'paginasCuadernillo' => $data['paginasCuadernillo'],
- /*'lomo_cubierta' => $extra_info['lomo_cubierta'],
- 'lomo_sobrecubierta' => $extra_info['lomo_sobrecubierta'],*/
+ 'pos_paginas_color' => $data['interior']['pos_paginas_color'],
+ 'paginas_color_consecutivas' => $data['interior']['paginas_color_consecutivas'],
+ 'papel_interior_diferente' => $data['interior']['papel_interior_diferente'],
+
+ 'lomo_cubierta' => $extra_info['lomo_cubierta'],
+ 'lomo_sobrecubierta' => $extra_info['lomo_sobrecubierta'],
'comparador_json_data' => $this->generateJson($data),
@@ -448,7 +457,7 @@ class PresupuestoModel extends \App\Models\BaseModel
'total_margenPercent_servicios' => round($resumen_totales['porcentajeMargenServicios'], 2),
'total_coste_envios' => round($resumen_totales['coste_envio'], 2),
'total_margen_envios' => round($resumen_totales['margen_envio'], 2),
- 'total_costes' => round($totalCostes, 2),
+ 'total_costes' => round($totalCostes, 2),
'total_margenes' => round($totalMargenes, 2),
'total_antes_descuento' => round($totalCostes + $totalMargenes, 2),
@@ -589,7 +598,7 @@ class PresupuestoModel extends \App\Models\BaseModel
);
$presupuesto->concepto .= $this->generarConceptoLineasPresupuestoLibro($lineas, $presupuesto);
- $presupuesto = (object)[
+ $presupuesto = (object) [
'numero' => $presupuesto->numero,
'unidades' => $presupuesto->unidades,
'total' => $presupuesto->total,
@@ -638,8 +647,8 @@ class PresupuestoModel extends \App\Models\BaseModel
->join('presupuesto_manipulados', 'presupuesto_manipulados.presupuesto_id = presupuestos.id', 'left')
->join('lg_tarifa_manipulado', 'lg_tarifa_manipulado.id = presupuesto_manipulados.tarifa_manipulado_id', 'left')
->where('presupuestos.id', $presupuesto_id);
-
- $queryExtras = $this->db->table($this->table)
+
+ $queryExtras = $this->db->table($this->table)
->select(
[
'lg_tarifa_preimpresion.id',
@@ -649,7 +658,7 @@ class PresupuestoModel extends \App\Models\BaseModel
)
->join('presupuesto_serviciosExtra', 'presupuesto_serviciosExtra.presupuesto_id = presupuestos.id', 'left')
->join('lg_tarifa_preimpresion', 'lg_tarifa_preimpresion.id = presupuesto_serviciosExtra.tarifa_extra_id', 'left')
- ->where('presupuestos.id', $presupuesto_id);
+ ->where('presupuestos.id', $presupuesto_id);
$servicios['acabado'] = $queryAcabado->get()->getResultObject();
$servicios['manipulado'] = $queryManipulado->get()->getResultObject();
@@ -787,5 +796,5 @@ class PresupuestoModel extends \App\Models\BaseModel
}
-
+
}
diff --git a/ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_datosPresupuestoClienteItems.php b/ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_datosPresupuestoClienteItems.php
index 8b996843..49a91282 100644
--- a/ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_datosPresupuestoClienteItems.php
+++ b/ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_datosPresupuestoClienteItems.php
@@ -305,7 +305,7 @@
-
+
diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js
index 11497eca..e9a9e7cc 100644
--- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js
+++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js
@@ -452,12 +452,12 @@ class DatosGenerales {
#handleFormatoLibro() {
if (this.checkFormatoPersonalizado.is(':checked')) {
- this.formatoLibro.hide();
+ this.formatoLibro.item.hide();
this.formatoPersonalizado.show();
this.formValidation.revalidateField('papel_formato_id');
}
else {
- this.formatoLibro.show();
+ this.formatoLibro.item.show();
this.formatoPersonalizado.hide();
this.formValidation.revalidateField('papel_formato_ancho');
this.formValidation.revalidateField('papel_formato_alto');
diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js
index 21b481bf..22dfbeef 100644
--- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js
+++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js
@@ -339,9 +339,8 @@ class PresupuestoCliente {
paginas: this.datosGenerales.paginas.val(),
paginasColor: this.datosGenerales.paginasColor.val(),
posPaginasColor: this.datosGenerales.posPaginasColor.val(),
- paginasColorConsecutivas: this.datosGenerales.paginasColorConsecutivas.is(':checked') ? 1 : 0,
+ pagColorConsecutivas: this.datosGenerales.pagColorConsecutivas.is(':checked') ? 1 : 0,
papelInteriorDiferente: this.datosGenerales.papelDiferente.is(':checked') ? 1 : 0,
- $prototipo: this.datosGenerales.prototipo.is(':checked') ? 1 : 0,
paginasCuadernillo: this.datosGenerales.paginasCuadernillo.val(),
tipo: this.datosGenerales.tiposLibro.filter('.selected').attr('id'),
@@ -352,6 +351,7 @@ class PresupuestoCliente {
interior: {
papelInterior: this.disenioInterior.getPapel(),
gramajeInterior: this.disenioInterior.getGramaje(),
+
},
cubierta: {
diff --git a/xdebug.log b/xdebug.log
index d874d3f4..05d3444d 100644
--- a/xdebug.log
+++ b/xdebug.log
@@ -27155,7 +27155,7 @@
[349] [Step Debug] ->
[349] [Step Debug] <- property_get -i 24 -n "$presupuesto->attributes" -p 0 -d 0 -c 0
-[349] [Step Debug] ->
+[349] [Step Debug] ->
[349] [Step Debug] <- run -i 25
[349] [Step Debug] ->
@@ -48814,3 +48814,665 @@ Stack trace:
[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
[100] Log closed at 2024-10-18 12:19:45.798867
+[22] Log opened at 2024-10-19 07:30:11.859253
+[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 07:30:12.918224
+
+[22] Log opened at 2024-10-19 07:30:12.933088
+[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 07:30:13.930077
+
+[23] Log opened at 2024-10-19 07:30:14.043447
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-10-19 07:30:14.731868
+
+[24] Log opened at 2024-10-19 07:30:14.861847
+[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 07:30:15.778845
+
+[24] Log opened at 2024-10-19 07:30:16.426654
+[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 07:30:17.834492
+
+[24] Log opened at 2024-10-19 07:30:17.846124
+[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 07:30:19.056051
+
+[24] Log opened at 2024-10-19 07:30:19.128436
+[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 07:30:19.785250
+
+[24] Log opened at 2024-10-19 07:30:19.864190
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[25] Log opened at 2024-10-19 07:30:19.883925
+[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] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [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 07:30:20.841421
+
+[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 07:30:21.462118
+
+[32] Log opened at 2024-10-19 07:30:28.128654
+[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 07:30:29.888646
+
+[32] Log opened at 2024-10-19 07:30:29.987667
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] Log opened at 2024-10-19 07:30:30.002103
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-10-19 07:30:30.645083
+
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-10-19 07:30:31.175799
+
+[26] Log opened at 2024-10-19 07:30:31.222380
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] Log opened at 2024-10-19 07:30:31.228671
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] Log opened at 2024-10-19 07:30:31.233139
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-19 07:30:32.196576
+
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-19 07:30:32.816137
+
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-10-19 07:30:33.180180
+
+[23] Log opened at 2024-10-19 07:30:49.844720
+[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.
+[25] Log opened at 2024-10-19 07:30:49.954896
+[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.
+[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).
+[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).
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] Log opened at 2024-10-19 07:30:50.792190
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] Log opened at 2024-10-19 07:30:50.900025
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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 07:30:51.080012
+
+[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).
+[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] Log opened at 2024-10-19 07:30:51.156654
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] Log opened at 2024-10-19 07:30:51.245264
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] Log opened at 2024-10-19 07:30:51.327813
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[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.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log opened at 2024-10-19 07:30:51.531865
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[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 07:30:51.540898
+
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] Log opened at 2024-10-19 07:30:51.610354
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log opened at 2024-10-19 07:30:51.749265
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log opened at 2024-10-19 07:30:51.854342
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-10-19 07:30:51.953856
+
+[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-10-19 07:30:52.345396
+
+[27] [Step Debug] 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 07:30:52.734565
+
+[32] [Step Debug] 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.
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-10-19 07:30:53.125009
+
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-10-19 07:30:53.525947
+
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-19 07:30:53.929970
+
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-19 07:30:54.323235
+
+[22] [Step Debug] ERR: Time-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.
+[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).
+[22] Log closed at 2024-10-19 07:30:54.700860
+
+[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 07:30:55.074094
+
+[35] Log opened at 2024-10-19 07:31:07.626095
+[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 07:31:07.725779
+[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.
+[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).
+[35] Log closed at 2024-10-19 07:31:08.694774
+
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-19 07:31:09.093239
+
+[38] Log opened at 2024-10-19 07:31:23.480950
+[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 07:31:24.443361
+
+[38] Log opened at 2024-10-19 07:31:24.449481
+[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 07:31:25.405049
+
+[27] Log opened at 2024-10-19 07:32:51.806055
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-10-19 07:32:53.464741
+
+[27] Log opened at 2024-10-19 07:32:53.591213
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] Log opened at 2024-10-19 07:32:53.621437
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log opened at 2024-10-19 07:32:53.842167
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-10-19 07:32:54.259234
+
+[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 07:32:54.761220
+
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-19 07:32:55.732573
+
+[26] Log opened at 2024-10-19 07:32:55.928717
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] Log opened at 2024-10-19 07:32:55.985769
+[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.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-19 07:32:56.591946
+
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-10-19 07:32:57.200532
+
+[23] Log opened at 2024-10-19 07:32:57.315306
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[38] Log opened at 2024-10-19 07:32:57.379804
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] Log opened at 2024-10-19 07:32:57.379977
+[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).
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[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 07:32:58.349106
+
+[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.
+[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 07:32:59.022662
+
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-10-19 07:32:59.370203
+
+[34] Log opened at 2024-10-19 07:33:08.256323
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] Log opened at 2024-10-19 07:33:08.359380
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] Log opened at 2024-10-19 07:33:09.399029
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-19 07:33:09.476404
+
+[39] Log opened at 2024-10-19 07:33:09.480334
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log opened at 2024-10-19 07:33:09.656144
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log opened at 2024-10-19 07:33:09.694678
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] Log opened at 2024-10-19 07:33:09.814669
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-10-19 07:33:09.924933
+
+[38] Log opened at 2024-10-19 07:33:09.974460
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log opened at 2024-10-19 07:33:10.077003
+[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] 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).
+[22] Log opened at 2024-10-19 07:33:10.210905
+[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).
+[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] Log opened at 2024-10-19 07:33:10.318699
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[32] [Step Debug] 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 07:33:10.490944
+
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-10-19 07:33:10.876118
+
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-19 07:33:11.274336
+
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-10-19 07:33:11.657750
+
+[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.
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-19 07:33:12.082686
+
+[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[23] [Step Debug] 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 07:33:12.478356
+
+[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 07:33:12.860314
+
+[22] [Step Debug] ERR: Time-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.
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-10-19 07:33:13.257525
+
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-19 07:33:13.657301
+
+[34] Log opened at 2024-10-19 07:33:18.385953
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] Log opened at 2024-10-19 07:33:18.490437
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-19 07:33:19.504035
+
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-10-19 07:33:19.882549
+
+[40] Log opened at 2024-10-19 07:34:11.612842
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] Log opened at 2024-10-19 07:34:11.623986
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] Log opened at 2024-10-19 07:34:11.636445
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] Log opened at 2024-10-19 07:34:11.649780
+[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.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] 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 07:34:18.598959
+[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).
+[38] Log opened at 2024-10-19 07:34:21.394905
+[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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-19 07:34:23.406135
+
+[23] Log opened at 2024-10-19 07:34:24.403272
+[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).
+[22] Log opened at 2024-10-19 07:34:26.492024
+[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).
+[34] Log opened at 2024-10-19 07:34:28.718380
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-10-19 07:34:34.628989
+
+[27] Log opened at 2024-10-19 07:34:34.986403
+[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).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-10-19 07:34:46.091105
+
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[40] Log closed at 2024-10-19 07:34:58.431075
+
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-10-19 07:35:07.536052
+
+[26] Log opened at 2024-10-19 07:35:13.310281
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log opened at 2024-10-19 07:35:14.883902
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log opened at 2024-10-19 07:35:16.102744
+[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).
+[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 07:35:17.218147
+
+[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 07:35:27.252199
+
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-10-19 07:35:40.095848
+
+[35] Log opened at 2024-10-19 07:35:42.039163
+[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).
+[39] Log opened at 2024-10-19 07:35:44.432665
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-10-19 07:35:52.418892
+
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-10-19 07:36:03.644388
+
+[37] Log opened at 2024-10-19 07:36:10.128944
+[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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-10-19 07:36:15.578706
+
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[42] Log closed at 2024-10-19 07:36:28.590835
+
+[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
+[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
+[43] Log closed at 2024-10-19 07:36:41.675869
+