-
-
-
-
-
-
+
\ No newline at end of file
diff --git a/datos web.txt b/datos web.txt
deleted file mode 100755
index 4213fbb2..00000000
--- a/datos web.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-Database: testCI4
-Usuario: testCI4
-password: 1234
-
-datos web guard:
-email admin: jajaime.jim@gmail.com
-password: 1234
-
-FTP SK-IMN: pjS9~l138
-
diff --git a/from mac to app.txt b/from mac to app.txt
deleted file mode 100755
index 8b159c4f..00000000
--- a/from mac to app.txt
+++ /dev/null
@@ -1,71 +0,0 @@
-Pasos para usar ficheros del mac
-1.- Copiar controlador, modelo, vistas y entidad
-2.- Copiar los ficheros de idioma. Le pone nombre raro (por ejemplo: Manipuladoes.php en lugar de Tarifamanipulado.php). Buscar y reemplazar en todos los ficheros. En este ejemplo: lang('Manipuladoes -> lang('Tarifamanipulado)
-3.- Editar los idiomas
-4.- En las vistas (formulario y lista) cambiar la segunda linea
- Esto: = $this->extend("themes" . config("Basics")->theme["name"] . "/AdminLayout/defaultLayout") ?>
- por esto: =$this->extend('themes/vuexy/main/defaultlayout') ?>
-5.- En las vistas cambiar Themes por themes
-6.- Quitar de la tabla la primera columna para que no se repitan los botones. Es decir:
-
= lang('Basic.global.Action') ?> |
-
-
- =anchor(route_to('editTarifamanipulado', $item->id), lang('Basic.global.edit'), ['class'=>'btn btn-sm btn-warning btn-edit me-1', 'data-id'=>$item->id,]); ?>
- =anchor('#confirm2delete', lang('Basic.global.Delete'), ['class'=>'btn btn-sm btn-danger btn-delete ms-1', 'data-href'=>route_to('deleteTarifamanipulado', $item->id), 'data-bs-toggle'=>'modal', 'data-bs-target'=>'#confirm2delete']); ?>
- |
-
-7.- Modificar las fechas de esto: date('mm/dd/YYYY H:i' a esto date('d/m/Y H:m:s'
-8.- Cambiar los botones de exportar de sitio: "dom": 'lfrtipB' por "dom": 'lfBrtip'
-9.- Poner el botón de añadir debajo del h3 del card header en lugar del footer
-10.- Copiar las nuevas rutas
-
-
-
-
-
-
-
-Pasos para añadir el soft delete a una tabla
-1.- En la bbdd añadir la columna is_deleted (TINYINT, 4 bits, sin signo, valor predeterminado '0')
-2.- En la bbdd añadir la columna deleted_at (TIMESTAMP, permitir NULL, valor predeterminado NULL)
-3.- En la entidad añadir a los atributos:
- "deleted_at" => null,
- "is_deleted" => 0,
-4.- En el modelo. Añadir en allowedFields:
- "deleted_at",
- "is_deleted",
- También añadir la variable protected $deletedField = 'deleted_at';
-
-
-5a.- Sin lazy tables:
- En el controlador:
- En el index añadir debajo de $this->view..
- // Se indica que este controlador trabaja con soft_delete
- $this->soft_delete = true;
- // Se indica el flag para los ficheros borrados
- $this->delete_flag = 1;
- En el edit: justo al principio
- // JJO
- $session = session();
-
- debajo de $sanitizedData = $this->sanitized($postData, $nullIfEmpty);
-
- // JJO
- if(isset($this->model->user_updated_id)){
- $sanitizedData['user_updated_id'] = $session->id_user;
- }
-
-5b.- Con lazy-tables:
- En el modelo cambiar:
- $builder = $this->db
- ->table($this->table . " t1")
- ->select(
- "t1.id AS id, t1.nombre AS nombre, t1.code AS code, t1.code_ot AS code_ot, t1.show_in_client AS show_in_client"
- );
- por
- $builder = $this->db
- ->table($this->table . " t1")
- ->select(
- "t1.id AS id, t1.nombre AS nombre, t1.code AS code, t1.code_ot AS code_ot, t1.show_in_client AS show_in_client"
- )
- ->where("is_deleted", 0);
\ No newline at end of file
diff --git a/git-commands.txt b/git-commands.txt
deleted file mode 100755
index 9f15f702..00000000
--- a/git-commands.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-Crear nueva rama:
-git checkout -b dev/nombre_rama
-
-Reflejar nueva rama en repositorio remoto
-git push --set-upstream origin dev/nombre_rama
-
-Commit con mensaje
-git commit -am "
"
-
-Subir cambios de un commit
-git push
-
diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js
index b0b113a5..11497eca 100644
--- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js
+++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js
@@ -212,7 +212,7 @@ class DatosGenerales {
// Get the selected options
const value = $("#paginasColor").val();
if (value.length >= 0 && Number.isInteger(parseInt(value)) && parseInt(value) >= 0) {
-
+
if (parseInt(value) % 2 != 0) {
return {
valid: false,
@@ -227,14 +227,14 @@ class DatosGenerales {
}
},
paginasNegro: {
- validators: {
- callback: {
+ validators: {
+ callback: {
message: window.translations["validation"].integer_greatherThan_0,
callback: function (input) {
// Get the selected options
const value = $("#paginasNegro").val();
if (value.length >= 0 && Number.isInteger(parseInt(value)) && parseInt(value) >= 0) {
-
+
if (parseInt(value) % 2 != 0) {
return {
valid: false,
@@ -353,11 +353,28 @@ class DatosGenerales {
this.tirada3.val(parseInt(datos.tirada3));
if (datos.tirada4)
this.tirada4.val(parseInt(datos.tirada4));
-
+
+ if (datos.checkFormatoPersonalizado) {
+ this.checkFormatoPersonalizado.prop(':checked', datos.checkFormatoPersonalizado);
+ this.checkFormatoPersonalizado.trigger('change');
+ this.papel_formato_alto.val(datos.papelFormatoAlto);
+ this.papel_formato_ancho.val(datos.papelFormatoAncho);
+ }
+ else {
+ this.formatoLibro.setOption(datos.papelFormatoId, datos.papelFormatoNombre);
+ this.formatoLibro.setVal(datos.papelFormatoId);
+ }
+
+ this.cliente.setOption(datos.clienteId, datos.clienteNombre);
+ this.cliente.setVal(datos.clienteId);
+ $(this.cliente).trigger('change');
this.paginas.val(parseInt(datos.paginas));
this.paginasNegro.val(parseInt(datos.paginasNegro));
this.paginasColor.val(parseInt(datos.paginasColor));
+ this.paginasColor.trigger('change');
+
+ this.posPaginasColor.val(datos.posPaginasColor);
/*
@@ -423,9 +440,9 @@ class DatosGenerales {
return tiradas;
}
-
+
getIsColor() {
- if(this.paginasColor.val() > 0) {
+ if (this.paginasColor.val() > 0) {
return true;
}
return false;
@@ -464,11 +481,11 @@ class DatosGenerales {
if (this.fresado.hasClass('selected') || this.cosido.hasClass('selected')) {
$('#tapaDuraLomoRedondo').removeClass('d-none');
- if(this.cosido.hasClass('selected')){
+ if (this.cosido.hasClass('selected')) {
$('#tapaDuraLomoRedondo').addClass('selected');
this.divPaginasCuaderillo.removeClass('d-none');
}
- else{
+ else {
this.divPaginasCuaderillo.addClass('d-none');
}
}
@@ -558,7 +575,7 @@ class DatosGenerales {
$(".papel-interior").removeClass('selected');
$(".interior-color").removeClass('d-none');
this.#handleInteriorLayout('mixto');
-
+
}
else {
$(".interior-color").addClass('d-none');
diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/direcciones.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/direcciones.js
index 0889b1bf..bf3b6caf 100644
--- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/direcciones.js
+++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/direcciones.js
@@ -212,12 +212,12 @@ class Direcciones {
if (unidades == null || unidades <= 0 || unidades == undefined)
return;
- $('#loader').show();
+ $('#loader').modal('show');
let peticion = new Ajax('/misdirecciones/get/' + id, {}, {},
(response) => {
if (this.direcciones.length == 0) {
- $('#loader').hide();
+ $('#loader').modal('hide');
if (entregaPalets) {
this.calcularPresupuesto = true;
}
@@ -237,13 +237,13 @@ class Direcciones {
},
() => {
console.error('Error getting address');
- $('#loader').hide();
+ $('#loader').modal('hide');
});
peticion.get();
} catch (e) {
console.error(e);
- $('#loader').hide();
+ $('#loader').modal('hide');
}
}
diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js
index e3b2ffba..21b481bf 100644
--- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js
+++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js
@@ -39,7 +39,7 @@ class PresupuestoCliente {
this.ajax_calcular = new Ajax('/presupuestocliente/calcular',
{}, this.datos,
this.#procesarPresupuesto.bind(this),
- () => { $('#loader').hide(); });
+ () => { $('#loader').modal('hide'); });
this.actualizarTiradasEnvio = false;
}
@@ -66,12 +66,10 @@ class PresupuestoCliente {
this.btnPrev.on('click', this.#prevtStep.bind(this));
this.btnSave.on('click', this.#savePresupuesto.bind(this));
- $(".calcular-presupuesto").on('change', this.checkForm.bind(this));
-
//this.RELLENAR_PRESUPUESTO(true);
if (window.location.href.includes("edit")) {
- $(".calcular-presupuesto").off('change');
+ $(".calcular-presupuesto").on('change', ()=>{});
this.#cargarPresupuesto();
const successMessage = sessionStorage.getItem('message');
if (successMessage) {
@@ -79,6 +77,10 @@ class PresupuestoCliente {
sessionStorage.removeItem('message');
}
}
+ else{
+ $(".calcular-presupuesto").on('change', this.checkForm.bind(this));
+ }
+
}
@@ -87,7 +89,7 @@ class PresupuestoCliente {
if (event.target.id === 'divDirecciones') {
if (!this.direcciones.calcularPresupuesto) {
this.actualizarTiradasEnvio = false;
- $('#loader').hide();
+ $('#loader').modal('hide');
return;
}
@@ -108,7 +110,7 @@ class PresupuestoCliente {
if (Object.values(datos_to_check).every(this.#isValidDataForm)) {
try {
- $('#loader').show();
+ $('#loader').modal('show');
// Si se está ejecutando la petición, abortar la petición anterior
this.ajax_calcular.abort();
@@ -119,7 +121,7 @@ class PresupuestoCliente {
}
catch (e) {
console.log(e);
- $('#loader').hide();
+ $('#loader').modal('hide');
}
}
@@ -225,7 +227,7 @@ class PresupuestoCliente {
this.#getDatos(true);
try {
- $('#loader').show();
+ $('#loader').modal('show');
if (window.location.href.includes("edit")) {
this.datos["id"] = window.location.href.split("/").pop();
@@ -234,7 +236,7 @@ class PresupuestoCliente {
this.datos,
{},
(response) => {
- $('#loader').hide();
+ $('#loader').modal('hide');
console.log(response);
if (this.datos["confirmar"] || window.location.href.includes("add")) {
sessionStorage.setItem('message', response.message);
@@ -244,20 +246,20 @@ class PresupuestoCliente {
popSuccessAlert(response.message);
}
},
- () => { $('#loader').hide(); }
+ () => { $('#loader').modal('hide'); }
).post();
}
catch (e) {
console.log(e);
- $('#loader').hide();
+ $('#loader').modal('hide');
}
}
#procesarPresupuesto(response) {
- $('#loader').hide();
+ $('#loader').modal('hide');
if (Object.values(response.errors).some((value) => value !== "")) {
popErrorAlert("No se ha podido calcular el presupuesto para los datos proporcionados. Por favor, póngase en contacto con el departamento comercial."
@@ -336,8 +338,11 @@ class PresupuestoCliente {
tirada: this.datosGenerales.getTiradas(),
paginas: this.datosGenerales.paginas.val(),
paginasColor: this.datosGenerales.paginasColor.val(),
- paginasCuadernillo: this.datosGenerales.paginasCuadernillo.val(),
+ posPaginasColor: this.datosGenerales.posPaginasColor.val(),
+ paginasColorConsecutivas: this.datosGenerales.paginasColorConsecutivas.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'),
@@ -409,7 +414,7 @@ class PresupuestoCliente {
#cargarPresupuesto() {
- $('#loader').show();
+ $('#loader').modal('show');
let id = window.location.href.split("/").pop()
new Ajax('/presupuestocliente/cargar/' + id,
{},
@@ -423,11 +428,11 @@ class PresupuestoCliente {
*/
}
console.log(response);
- $('#loader').hide();
+ $('#loader').modal('hide');
$(".calcular-presupuesto").on('change', this.checkForm.bind(this));
},
() => {
- $('#loader').hide();
+ $('#loader').modal('hide');
$(".calcular-presupuesto").on('change', this.checkForm.bind(this));
}
).get();
diff --git a/httpdocs/themes/vuexy/css/presupuestoCliente.css b/httpdocs/themes/vuexy/css/presupuestoCliente.css
index 11d9ae77..1ad2532f 100644
--- a/httpdocs/themes/vuexy/css/presupuestoCliente.css
+++ b/httpdocs/themes/vuexy/css/presupuestoCliente.css
@@ -1,7 +1,11 @@
.image-container {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ margin-bottom: 20px;
position: relative;
- display: inline-block;
- max-height: 150px;
max-width: 200px;
}
@@ -13,19 +17,19 @@
/* Pseudo-elemento que muestra el tick */
.image-container.selected::after {
- content: '✔';
- /* Símbolo de tick */
+ content: '✔'; /* Símbolo de tick */
position: absolute;
- top: 90px;
- right: 25px;
+ top: calc(50% + 5px);
+ left: calc(100%/2 + 65px); /* Mueve 75px a la derecha fuera del contenedor */
font-size: 50px;
font-weight: bold;
color: green;
- background-color: rgba(255, 255, 255, 0);
+ background-color: rgba(255, 255, 255, 0); /* Fondo transparente */
border-radius: 100%;
padding: 5px;
}
+
.image-presupuesto {
transition: transform 1s ease;
}
@@ -88,17 +92,28 @@
color: var(--fg);
font: 1em/1.5 sans-serif;
height: 100vh;
- position: fixed; /* Fijo para cubrir la pantalla */
- left: 50%; /* Centramos horizontalmente */
- top: 50%; /* Centramos verticalmente */
- transform: translate(-50%, -50%); /* Ajuste para centrar el loader */
- width: auto; /* Se ajusta automáticamente */
- height: auto; /* Se ajusta automáticamente */
- z-index: 9999; /* Mantener por encima de otros elementos */
- display: flex; /* Para centrar contenido */
- justify-content: center; /* Centrar horizontalmente */
- align-items: center; /* Centrar verticalmente */
- background-color: rgba(255, 255, 255, 0); /* Fondo completamente transparente */
+ position: fixed;
+ /* Fijo para cubrir la pantalla */
+ left: 50%;
+ /* Centramos horizontalmente */
+ top: 50%;
+ /* Centramos verticalmente */
+ transform: translate(-50%, -50%);
+ /* Ajuste para centrar el loader */
+ width: auto;
+ /* Se ajusta automáticamente */
+ height: auto;
+ /* Se ajusta automáticamente */
+ z-index: 9999;
+ /* Mantener por encima de otros elementos */
+ display: flex;
+ /* Para centrar contenido */
+ justify-content: center;
+ /* Centrar horizontalmente */
+ align-items: center;
+ /* Centrar verticalmente */
+ background-color: rgba(255, 255, 255, 0);
+ /* Fondo completamente transparente */
}
.book,
diff --git a/sk-commit.bat b/sk-commit.bat
deleted file mode 100755
index 6cc71f7a..00000000
--- a/sk-commit.bat
+++ /dev/null
@@ -1,38 +0,0 @@
-@echo off
-
-REM Obtener la fecha y hora actual
-for /f "delims=" %%a in ('wmic OS Get localdatetime ^| find "."') do set datetime=%%a
-set year=%datetime:~0,4%
-set month=%datetime:~4,2%
-set day=%datetime:~6,2%
-set hour=%datetime:~8,2%
-set minute=%datetime:~10,2%
-set second=%datetime:~12,2%
-
-REM Formatear la fecha y hora
-set fecha_hora=%year%-%month%-%day% %hour%:%minute%:%second%
-
-REM Mensaje de commit automático
-set mensaje_automatico=Actualizacion automatica: %fecha_hora%
-
-REM Solicitar al usuario un mensaje personalizado
-set /p mensaje_usuario=Ingrese un mensaje personalizado (o presione Enter para el automatico):
-
-REM Utilizar el mensaje automático si no se proporciona uno
-if "%mensaje_usuario%"=="" (
- set mensaje_commit=%mensaje_automatico%
-) else (
- set mensaje_commit=%mensaje_usuario%
-)
-
-REM Añadir todos los cambios al área de preparación
-git add .
-
-REM Realizar el commit con el mensaje seleccionado
-git commit -m "%mensaje_commit%"
-
-REM Subir al respositorio remoto
-git push
-
-REM Imprimir mensaje informativo
-echo Se ha realizado el commit con el mensaje: %mensaje_commit%
diff --git a/vscode-extensions.txt b/vscode-extensions.txt
deleted file mode 100644
index 9fed028b..00000000
Binary files a/vscode-extensions.txt and /dev/null differ
diff --git a/xdebug.log b/xdebug.log
index 0b143d86..d874d3f4 100644
--- a/xdebug.log
+++ b/xdebug.log
@@ -36796,3 +36796,12021 @@
[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
[362] Log closed at 2024-10-17 20:08:37.737396
+[26] Log opened at 2024-10-18 07:21:11.148156
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] Log closed at 2024-10-18 07:21:12.150553
+
+[36] Log opened at 2024-10-18 07:21:12.208398
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [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).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [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).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [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).
+[36] Log closed at 2024-10-18 07:21:12.847747
+
+[34] Log opened at 2024-10-18 07:21:13.031684
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] [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).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] [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).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] [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).
+[34] Log closed at 2024-10-18 07:21:13.848173
+
+[26] Log opened at 2024-10-18 07:21:14.629695
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] Log closed at 2024-10-18 07:21:15.876790
+
+[26] Log opened at 2024-10-18 07:21:15.881880
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] Log closed at 2024-10-18 07:21:16.905359
+
+[34] Log opened at 2024-10-18 07:21:16.948936
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] [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).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] [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).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] [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).
+[34] Log closed at 2024-10-18 07:21:17.579654
+
+[34] Log opened at 2024-10-18 07:21:17.623598
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] Log opened at 2024-10-18 07:21:17.635958
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] [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).
+[31] [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).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [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).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [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).
+[31] Log closed at 2024-10-18 07:21:18.439544
+
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] [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).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] [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).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] [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).
+[34] Log closed at 2024-10-18 07:21:19.182277
+
+[31] Log opened at 2024-10-18 07:21:22.187251
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [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).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [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).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [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).
+[31] Log closed at 2024-10-18 07:21:23.264473
+
+[31] Log opened at 2024-10-18 07:21:23.309318
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [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).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [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).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [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).
+[31] Log closed at 2024-10-18 07:21:23.937183
+
+[37] Log opened at 2024-10-18 07:21:24.026891
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[35] Log opened at 2024-10-18 07:21:24.026980
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] Log opened at 2024-10-18 07:21:24.072302
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [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).
+[35] [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).
+[30] [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).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [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).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [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).
+[37] Log closed at 2024-10-18 07:21:24.807998
+
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[35] [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).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[35] [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).
+[35] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[35] [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).
+[35] Log closed at 2024-10-18 07:21:25.540418
+
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [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).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [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).
+[30] Log closed at 2024-10-18 07:21:25.979121
+
+[30] Log opened at 2024-10-18 07:21:30.456385
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [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).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [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).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [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).
+[30] Log closed at 2024-10-18 07:21:32.655663
+
+[30] Log opened at 2024-10-18 07:21:32.700415
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] Log opened at 2024-10-18 07:21:32.709766
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [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).
+[36] [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).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [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).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [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).
+[30] Log closed at 2024-10-18 07:21:33.329480
+
+[36] [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).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [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).
+[36] Log closed at 2024-10-18 07:21:33.727549
+
+[30] Log opened at 2024-10-18 07:21:33.751344
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] Log opened at 2024-10-18 07:21:33.752377
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] Log opened at 2024-10-18 07:21:33.751641
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [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).
+[34] [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).
+[33] [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).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [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).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [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).
+[33] Log closed at 2024-10-18 07:21:34.617720
+
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [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).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [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).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [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).
+[30] Log closed at 2024-10-18 07:21:35.323165
+
+[34] [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).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] [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).
+[34] Log closed at 2024-10-18 07:21:35.660732
+
+[33] Log opened at 2024-10-18 07:21:35.684537
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [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).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [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).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [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).
+[33] Log closed at 2024-10-18 07:21:36.718008
+
+[31] Log opened at 2024-10-18 07:26:59.295419
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [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).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [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).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [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).
+[31] Log closed at 2024-10-18 07:27:00.198947
+
+[31] Log opened at 2024-10-18 07:27:00.206454
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [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).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [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).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [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).
+[31] Log closed at 2024-10-18 07:27:01.070909
+
+[26] Log opened at 2024-10-18 07:27:14.880707
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] Log closed at 2024-10-18 07:27:17.102306
+
+[26] Log opened at 2024-10-18 07:27:17.191480
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] Log opened at 2024-10-18 07:27:17.192790
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[36] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] Log closed at 2024-10-18 07:27:17.820615
+
+[36] [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).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [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).
+[36] Log closed at 2024-10-18 07:27:18.209257
+
+[36] Log opened at 2024-10-18 07:27:18.321640
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] Log opened at 2024-10-18 07:27:18.333679
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] Log opened at 2024-10-18 07:27:18.339542
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [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).
+[33] [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).
+[34] [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).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [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).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [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).
+[33] Log closed at 2024-10-18 07:27:19.192059
+
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [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).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [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).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [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).
+[36] Log closed at 2024-10-18 07:27:19.904240
+
+[34] [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).
+[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[34] [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).
+[34] Log closed at 2024-10-18 07:27:20.242100
+
+[33] Log opened at 2024-10-18 07:27:20.272009
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [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).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [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).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [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).
+[33] Log closed at 2024-10-18 07:27:21.333086
+
+[37] Log opened at 2024-10-18 07:36:53.436461
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [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).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [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).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [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).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [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).
+[37] Log closed at 2024-10-18 07:36:54.340663
+
+[30] Log opened at 2024-10-18 07:36:54.429889
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [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).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [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).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [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).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [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).
+[30] Log closed at 2024-10-18 07:36:55.308863
+
+[31] Log opened at 2024-10-18 07:37:09.049714
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [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).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [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).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [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).
+[31] Log closed at 2024-10-18 07:37:11.230477
+
+[31] Log opened at 2024-10-18 07:37:11.283613
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] Log opened at 2024-10-18 07:37:11.291435
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [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).
+[38] [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).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [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).
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [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).
+[31] Log closed at 2024-10-18 07:37:11.911770
+
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [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).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [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).
+[38] Log closed at 2024-10-18 07:37:12.314948
+
+[38] Log opened at 2024-10-18 07:37:12.369562
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] Log opened at 2024-10-18 07:37:12.390380
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[27] Log opened at 2024-10-18 07:37:12.392098
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [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).
+[36] [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).
+[27] [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).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [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).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [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).
+[36] Log closed at 2024-10-18 07:37:13.221336
+
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [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).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [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).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [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).
+[38] Log closed at 2024-10-18 07:37:13.944590
+
+[27] [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).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[27] [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).
+[27] Log closed at 2024-10-18 07:37:14.280408
+
+[36] Log opened at 2024-10-18 07:37:14.301652
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [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).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [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).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [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).
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [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).
+[36] Log closed at 2024-10-18 07:37:15.410239
+
+[33] Log opened at 2024-10-18 07:37:35.834629
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [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).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [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).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [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).
+[33] Log closed at 2024-10-18 07:37:37.980159
+
+[33] Log opened at 2024-10-18 07:37:38.059185
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] Log opened at 2024-10-18 07:37:38.060724
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [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).
+[37] [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).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [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).
+[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[33] [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).
+[33] Log closed at 2024-10-18 07:37:38.687755
+
+[37] [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).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [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).
+[37] Log closed at 2024-10-18 07:37:39.085740
+
+[37] Log opened at 2024-10-18 07:37:39.108361
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] Log opened at 2024-10-18 07:37:39.156431
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] Log opened at 2024-10-18 07:37:39.157088
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [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).
+[30] [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).
+[39] [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).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [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).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [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).
+[30] Log closed at 2024-10-18 07:37:39.988192
+
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [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).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [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).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [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).
+[37] Log closed at 2024-10-18 07:37:40.708616
+
+[39] [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).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [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).
+[39] Log closed at 2024-10-18 07:37:41.050001
+
+[30] Log opened at 2024-10-18 07:37:41.078877
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [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).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [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).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [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).
+[30] Log closed at 2024-10-18 07:37:42.154817
+
+[26] Log opened at 2024-10-18 07:38:47.273104
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] Log closed at 2024-10-18 07:38:48.265883
+
+[28] Log opened at 2024-10-18 07:40:11.229699
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [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).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [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).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [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).
+[28] Log closed at 2024-10-18 07:40:13.390491
+
+[28] Log opened at 2024-10-18 07:40:13.467167
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[27] Log opened at 2024-10-18 07:40:13.468970
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [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).
+[27] [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).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [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).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [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).
+[28] Log closed at 2024-10-18 07:40:14.097074
+
+[27] [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).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[27] [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).
+[27] Log closed at 2024-10-18 07:40:14.484878
+
+[27] Log opened at 2024-10-18 07:40:14.535926
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] Log opened at 2024-10-18 07:40:14.554396
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[38] Log opened at 2024-10-18 07:40:14.554463
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[27] [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).
+[37] [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).
+[38] [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).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [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).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [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).
+[37] Log closed at 2024-10-18 07:40:15.382301
+
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[27] [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).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[27] [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).
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[27] [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).
+[27] Log closed at 2024-10-18 07:40:16.104582
+
+[38] [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).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [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).
+[38] Log closed at 2024-10-18 07:40:16.443296
+
+[37] Log opened at 2024-10-18 07:40:16.470831
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [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).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [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).
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [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).
+[37] Log closed at 2024-10-18 07:40:17.564842
+
+[39] Log opened at 2024-10-18 07:40:25.304668
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [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).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [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).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [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).
+[39] Log closed at 2024-10-18 07:40:27.486658
+
+[39] Log opened at 2024-10-18 07:40:27.573161
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] Log opened at 2024-10-18 07:40:27.574935
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [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).
+[30] [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).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [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).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [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).
+[39] Log closed at 2024-10-18 07:40:28.203990
+
+[30] [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).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [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).
+[30] Log closed at 2024-10-18 07:40:28.587251
+
+[30] Log opened at 2024-10-18 07:40:28.614142
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] Log opened at 2024-10-18 07:40:28.668115
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[40] Log opened at 2024-10-18 07:40:28.668399
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [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).
+[26] [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).
+[40] [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).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[40] [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).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[40] [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).
+[40] Log closed at 2024-10-18 07:40:29.501264
+
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [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).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [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).
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [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).
+[30] Log closed at 2024-10-18 07:40:30.224463
+
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] Log closed at 2024-10-18 07:40:30.557403
+
+[40] Log opened at 2024-10-18 07:40:30.582363
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[40] [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).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[40] [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).
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[40] [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).
+[40] Log closed at 2024-10-18 07:40:31.680241
+
+[31] Log opened at 2024-10-18 07:40:53.427837
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_list -i 1
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_list -i 2
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_list -i 3
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_list -i 4
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_list -i 5
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 134
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_set -i 9 -t exception -x *
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- run -i 10
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- stack_get -i 11
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- context_names -i 12 -d 0
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- context_get -i 13 -d 0 -c 0
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- context_get -i 14 -d 0 -c 1
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- context_get -i 15 -d 0 -c 2
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_list -i 16
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_remove -i 17 -d 310003
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- run -i 18
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- stop -i 19
+[31] [Step Debug] ->
+
+[31] Log closed at 2024-10-18 07:41:05.600840
+
+[31] Log opened at 2024-10-18 07:41:05.671681
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] ->
+
+[38] Log opened at 2024-10-18 07:41:05.673018
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_list -i 1
+[38] [Step Debug] <- breakpoint_list -i 1
+[38] [Step Debug] ->
+
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_list -i 2
+[38] [Step Debug] <- breakpoint_list -i 2
+[31] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_list -i 3
+[31] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 3
+[38] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_list -i 4
+[31] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 4
+[31] [Step Debug] <- breakpoint_list -i 5
+[38] [Step Debug] ->
+
+[31] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 5
+[31] [Step Debug] <- breakpoint_list -i 6
+[38] [Step Debug] ->
+
+[31] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 6
+[38] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_list -i 7
+[38] [Step Debug] <- breakpoint_list -i 7
+[31] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_list -i 8
+[38] [Step Debug] <- breakpoint_list -i 8
+[31] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[31] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[31] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132
+[38] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132
+[31] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x *
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x *
+[38] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_set -i 11 -t exception -x *
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_set -i 14 -t exception -x *
+[31] [Step Debug] ->
+
+[38] [Step Debug] <- run -i 15
+[31] [Step Debug] <- run -i 15
+[31] [Step Debug] ->
+
+[31] [Step Debug] <- stop -i 16
+[31] [Step Debug] ->
+
+[31] Log closed at 2024-10-18 07:41:05.760620
+
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- stop -i 16
+[38] [Step Debug] ->
+
+[38] Log closed at 2024-10-18 07:41:06.156545
+
+[38] Log opened at 2024-10-18 07:41:06.175597
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 1
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 2
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 3
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 4
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[38] [Step Debug] ->
+
+[37] Log opened at 2024-10-18 07:41:06.230900
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ->
+
+[30] Log opened at 2024-10-18 07:41:06.232065
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[30] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ->
+
+[37] [Step Debug] <- run -i 1
+[30] [Step Debug] <- run -i 1
+[38] [Step Debug] <- run -i 8
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 2
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 3
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 4
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 5
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 6
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 7
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 8
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 9
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- stop -i 10
+[37] [Step Debug] ->
+
+[37] Log closed at 2024-10-18 07:41:06.463183
+
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_list -i 2
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_list -i 3
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_list -i 4
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_list -i 5
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_list -i 6
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_list -i 7
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_list -i 8
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_list -i 9
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- stop -i 10
+[30] [Step Debug] ->
+
+[30] Log closed at 2024-10-18 07:41:06.598506
+
+[37] Log opened at 2024-10-18 07:41:06.621024
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 2
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 3
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 4
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[37] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 9
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 10
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 11
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 12
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 13
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 14
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 15
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 16
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 17
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 18
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 19
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 20
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_remove -i 21 -d 380005
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_remove -i 22 -d 380006
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_remove -i 23 -d 380007
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_remove -i 24 -d 380005
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_remove -i 25 -d 380006
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_remove -i 26 -d 380007
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_remove -i 27 -d 380005
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_remove -i 28 -d 380006
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_remove -i 29 -d 380007
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 32 -t exception -x *
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- stack_get -i 33
+[38] [Step Debug] ->
+
+[37] [Step Debug] <- run -i 8
+[38] [Step Debug] <- context_names -i 34 -d 0
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- run -i 35
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- stack_get -i 36
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- context_names -i 37 -d 0
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- run -i 38
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- stack_get -i 39
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- context_names -i 40 -d 0
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- run -i 41
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- stack_get -i 42
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- context_names -i 43 -d 0
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- run -i 44
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- stop -i 45
+[38] [Step Debug] ->
+
+[38] Log closed at 2024-10-18 07:41:21.411824
+
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- stack_get -i 9
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_names -i 10 -d 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_get -i 11 -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_get -i 12 -d 0 -c 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_get -i 13 -d 0 -c 2
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- property_get -i 14 -d 0 -c 0 -n "$builder"
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- eval -i 15 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_names -i 16 -d 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_get -i 17 -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_get -i 18 -d 0 -c 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_get -i 19 -d 0 -c 2
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- run -i 20
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- stack_get -i 21
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- eval -i 22 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_names -i 23 -d 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_get -i 24 -d 0 -c 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- run -i 25
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- stop -i 26
+[37] [Step Debug] ->
+
+[37] Log closed at 2024-10-18 07:42:51.633974
+
+[37] Log opened at 2024-10-18 07:42:55.660932
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 2
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 3
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 4
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- run -i 8
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- stop -i 9
+[37] [Step Debug] ->
+
+[37] Log closed at 2024-10-18 07:42:57.320072
+
+[37] Log opened at 2024-10-18 07:42:57.398997
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 2
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 3
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 4
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[37] [Step Debug] ->
+
+[27] Log opened at 2024-10-18 07:42:57.409692
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[27] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- run -i 1
+[37] [Step Debug] <- run -i 8
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 9
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 10
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 11
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 12
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- stop -i 13
+[37] [Step Debug] ->
+
+[37] Log closed at 2024-10-18 07:42:57.455490
+
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_list -i 2
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_list -i 3
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_list -i 4
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_list -i 5
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- stop -i 6
+[27] [Step Debug] ->
+
+[27] Log closed at 2024-10-18 07:42:57.844079
+
+[37] Log opened at 2024-10-18 07:42:57.903474
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 2
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 3
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 4
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[37] [Step Debug] ->
+
+[40] Log opened at 2024-10-18 07:42:57.914647
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[27] Log opened at 2024-10-18 07:42:57.914646
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[40] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] ->
+
+[27] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ->
+
+[37] [Step Debug] <- run -i 8
+[27] [Step Debug] <- run -i 1
+[40] [Step Debug] <- run -i 1
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_list -i 2
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_list -i 3
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_list -i 4
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_list -i 5
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_list -i 6
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_list -i 7
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_list -i 8
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_list -i 9
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- stop -i 10
+[27] [Step Debug] ->
+
+[27] Log closed at 2024-10-18 07:42:58.185702
+
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 9
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 10
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 11
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 12
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 13
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 14
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 15
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 16
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_remove -i 17 -d 370010
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_remove -i 18 -d 370011
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_remove -i 19 -d 370012
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_remove -i 20 -d 370010
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_remove -i 21 -d 370011
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_remove -i 22 -d 370012
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 25 -t exception -x *
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- stack_get -i 26
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- eval -i 27 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_names -i 28 -d 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- run -i 29
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- stack_get -i 30
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- eval -i 31 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_names -i 32 -d 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- run -i 33
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- stack_get -i 34
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- eval -i 35 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_names -i 36 -d 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- run -i 37
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- stack_get -i 38
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- eval -i 39 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- context_names -i 40 -d 0
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- run -i 41
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- stop -i 42
+[37] [Step Debug] ->
+
+[37] Log closed at 2024-10-18 07:43:03.353967
+
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_list -i 2
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_list -i 3
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_list -i 4
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_list -i 5
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_list -i 6
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_list -i 7
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_list -i 8
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_list -i 9
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- stop -i 10
+[40] [Step Debug] ->
+
+[40] Log closed at 2024-10-18 07:43:03.486867
+
+[40] Log opened at 2024-10-18 07:43:03.520942
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[40] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_list -i 1
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_list -i 2
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_list -i 3
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_list -i 4
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- run -i 8
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- stack_get -i 9
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- eval -i 10 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- context_names -i 11 -d 0
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- context_get -i 12 -d 0 -c 0
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_list -i 13
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_remove -i 14 -d 400002
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- run -i 15
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- stack_get -i 16
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- eval -i 17 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- context_names -i 18 -d 0
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- context_get -i 19 -d 0 -c 0
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- run -i 20
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- stop -i 21
+[40] [Step Debug] ->
+
+[40] Log closed at 2024-10-18 07:43:41.121639
+
+[38] Log opened at 2024-10-18 07:48:51.912101
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 1
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 2
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 3
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 4
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2249
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- run -i 8
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- stop -i 9
+[38] [Step Debug] ->
+
+[38] Log closed at 2024-10-18 07:48:53.576542
+
+[38] Log opened at 2024-10-18 07:48:53.655108
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ->
+
+[36] Log opened at 2024-10-18 07:48:53.656766
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 1
+[38] [Step Debug] <- breakpoint_list -i 1
+[38] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 2
+[38] [Step Debug] <- breakpoint_list -i 2
+[36] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 3
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 4
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 5
+[38] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 3
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 4
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 5
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 6
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 7
+[36] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 6
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 7
+[38] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 8
+[38] [Step Debug] <- breakpoint_list -i 8
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[36] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2249
+[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[38] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2249
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 11 -t exception -x *
+[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x *
+[36] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[36] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[38] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2249
+[36] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2249
+[38] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 14 -t exception -x *
+[36] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x *
+[38] [Step Debug] ->
+
+[36] [Step Debug] <- run -i 15
+[38] [Step Debug] <- run -i 15
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- stop -i 16
+[38] [Step Debug] ->
+
+[38] Log closed at 2024-10-18 07:48:53.739022
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stop -i 16
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-10-18 07:48:54.125969
+
+[36] Log opened at 2024-10-18 07:48:54.148241
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[36] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 2
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 3
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 4
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2249
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[36] [Step Debug] ->
+
+[41] Log opened at 2024-10-18 07:48:54.195882
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] Log opened at 2024-10-18 07:48:54.195938
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[41] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ->
+
+[28] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ->
+
+[41] [Step Debug] <- run -i 1
+[36] [Step Debug] <- run -i 8
+[28] [Step Debug] <- run -i 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_list -i 2
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_list -i 3
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_list -i 4
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_list -i 5
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_list -i 6
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_list -i 7
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_list -i 8
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_list -i 9
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- stop -i 10
+[41] [Step Debug] ->
+
+[41] Log closed at 2024-10-18 07:48:54.435607
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 9
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 10
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 11
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 12
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 13
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 14
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 15
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 16
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_remove -i 17 -d 360005
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_remove -i 18 -d 360006
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_remove -i 19 -d 360007
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_remove -i 20 -d 360005
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_remove -i 21 -d 360006
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_remove -i 22 -d 360007
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2249
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 25 -t exception -x *
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stack_get -i 26
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- eval -i 27 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- context_names -i 28 -d 0
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_list -i 29
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_remove -i 30 -d 360008
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- run -i 31
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stack_get -i 32
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- eval -i 33 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- context_names -i 34 -d 0
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- run -i 35
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stack_get -i 36
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- eval -i 37 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- context_names -i 38 -d 0
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- run -i 39
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stack_get -i 40
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- eval -i 41 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- context_names -i 42 -d 0
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- run -i 43
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stop -i 44
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-10-18 07:49:06.608287
+
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 2
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 3
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 4
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 5
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 6
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 7
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 8
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 9
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 10
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stop -i 11
+[28] [Step Debug] ->
+
+[28] Log closed at 2024-10-18 07:49:06.746434
+
+[28] Log opened at 2024-10-18 07:49:06.774266
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 1
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 2
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 3
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2249
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- run -i 6
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stack_get -i 7
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- eval -i 8 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_names -i 9 -d 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_get -i 10 -d 0 -c 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- step_over -i 11
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stack_get -i 12
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stack_get -i 13
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- eval -i 14 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_names -i 15 -d 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_get -i 16 -d 0 -c 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- step_over -i 17
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stack_get -i 18
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- eval -i 19 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_names -i 20 -d 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_get -i 21 -d 0 -c 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- step_over -i 22
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stack_get -i 23
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- eval -i 24 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_names -i 25 -d 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_get -i 26 -d 0 -c 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- step_over -i 27
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stack_get -i 28
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- eval -i 29 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_names -i 30 -d 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_get -i 31 -d 0 -c 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- step_over -i 32
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stack_get -i 33
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stack_get -i 34
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- eval -i 35 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_names -i 36 -d 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_get -i 37 -d 0 -c 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- step_over -i 38
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stack_get -i 39
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- eval -i 40 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_names -i 41 -d 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_get -i 42 -d 0 -c 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 43
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_remove -i 44 -d 280001
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- run -i 45
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stop -i 46
+[28] [Step Debug] ->
+
+[28] Log closed at 2024-10-18 07:50:09.250095
+
+[39] Log opened at 2024-10-18 07:50:26.456700
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_list -i 1
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_list -i 2
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 3 -t exception -x *
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- run -i 4
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- stop -i 5
+[39] [Step Debug] ->
+
+[39] Log closed at 2024-10-18 07:50:28.070757
+
+[39] Log opened at 2024-10-18 07:50:28.176635
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_list -i 1
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_list -i 2
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 3 -t exception -x *
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- run -i 4
+[26] Log opened at 2024-10-18 07:50:28.220992
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 1
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 2
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 3 -t exception -x *
+[26] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_list -i 5
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_list -i 6
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- stop -i 7
+[39] [Step Debug] ->
+
+[39] Log closed at 2024-10-18 07:50:28.246659
+
+[37] Log opened at 2024-10-18 07:50:51.948220
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[28] Log opened at 2024-10-18 07:50:51.948200
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ->
+
+[37] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 1
+[26] [Step Debug] <- breakpoint_list -i 4
+[28] [Step Debug] ->
+
+[26] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 1
+[37] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 2
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 3
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 4
+[28] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 5
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 6
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 7
+[26] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 2
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 3
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 4
+[37] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[28] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_remove -i 8 -d 260001
+[26] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[37] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 6 -t exception -x *
+[28] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 6 -t exception -x *
+[26] [Step Debug] <- breakpoint_remove -i 9 -d 260001
+[37] [Step Debug] ->
+
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- run -i 11
+[37] [Step Debug] <- run -i 7
+[28] [Step Debug] <- run -i 7
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- stop -i 8
+[37] [Step Debug] ->
+
+[37] Log closed at 2024-10-18 07:50:52.208658
+
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stop -i 8
+[28] [Step Debug] ->
+
+[28] Log closed at 2024-10-18 07:50:53.517646
+
+[37] Log opened at 2024-10-18 07:50:53.600196
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[37] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 1
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 2
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 3 -t exception -x *
+[37] [Step Debug] ->
+
+[31] Log opened at 2024-10-18 07:50:53.641063
+[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
+[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[31] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[31] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 4
+[31] [Step Debug] <- breakpoint_list -i 1
+[31] [Step Debug] ->
+
+[37] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_list -i 2
+[31] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_list -i 5
+[37] [Step Debug] ->
+
+[31] [Step Debug] <- breakpoint_set -i 3 -t exception -x *
+[31] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_remove -i 6 -d 370018
+[37] [Step Debug] ->
+
+[37] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[37] [Step Debug] ->
+
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 12
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 13
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 14
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 15
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- stop -i 16
+[26] [Step Debug] ->
+
+[26] Log closed at 2024-10-18 07:50:53.716966
+
+[37] [Step Debug] <- stop -i 8
+[37] [Step Debug] ->
+
+[31] [Step Debug] <- stop -i 4
+[31] [Step Debug] ->
+
+[38] Log opened at 2024-10-18 07:50:55.595663
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[43] Log opened at 2024-10-18 07:50:55.596756
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [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).
+[43] [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).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [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).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[43] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [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).
+[38] Log closed at 2024-10-18 07:50:56.224568
+
+[43] [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).
+[43] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[43] [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).
+[43] Log closed at 2024-10-18 07:50:56.608975
+
+[42] Log opened at 2024-10-18 07:50:56.632909
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] Log opened at 2024-10-18 07:50:56.687861
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] Log opened at 2024-10-18 07:50:56.692068
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[38] [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).
+[39] [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).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [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).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [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).
+[38] Log closed at 2024-10-18 07:50:57.518814
+
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] Log closed at 2024-10-18 07:50:58.219272
+
+[39] [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).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [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).
+[39] Log closed at 2024-10-18 07:50:58.552446
+
+[38] Log opened at 2024-10-18 07:50:58.577691
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [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).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [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).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [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).
+[38] Log closed at 2024-10-18 07:50:59.674168
+
+[38] Log opened at 2024-10-18 07:51:04.557120
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [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).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [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).
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [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).
+[38] Log closed at 2024-10-18 07:51:05.549753
+
+[44] Log opened at 2024-10-18 07:55:58.744973
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [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).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [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).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [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).
+[44] Log closed at 2024-10-18 07:56:01.061776
+
+[44] Log opened at 2024-10-18 07:56:01.179737
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[43] Log opened at 2024-10-18 07:56:01.219196
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [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).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[43] [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).
+[44] [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).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [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).
+[44] Log closed at 2024-10-18 07:56:01.809641
+
+[43] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[43] [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).
+[43] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[43] [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).
+[43] Log closed at 2024-10-18 07:56:02.241843
+
+[45] Log opened at 2024-10-18 07:56:02.306822
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] Log opened at 2024-10-18 07:56:02.325407
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] Log opened at 2024-10-18 07:56:02.326273
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[28] [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).
+[42] [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).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [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).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [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).
+[28] Log closed at 2024-10-18 07:56:03.174519
+
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[45] Log closed at 2024-10-18 07:56:03.887736
+
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] Log closed at 2024-10-18 07:56:04.228923
+
+[28] Log opened at 2024-10-18 07:56:04.252723
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [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).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [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).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [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).
+[28] Log closed at 2024-10-18 07:56:05.350961
+
+[39] Log opened at 2024-10-18 07:58:46.173099
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_list -i 1
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_list -i 2
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_list -i 3
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- run -i 6
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- stop -i 7
+[39] [Step Debug] ->
+
+[39] Log closed at 2024-10-18 07:58:47.854044
+
+[38] Log opened at 2024-10-18 07:58:47.949271
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] Log opened at 2024-10-18 07:58:47.950899
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ->
+
+[39] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 1
+[39] [Step Debug] <- breakpoint_list -i 1
+[39] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_list -i 2
+[38] [Step Debug] <- breakpoint_list -i 2
+[38] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 3
+[39] [Step Debug] <- breakpoint_list -i 3
+[38] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_list -i 4
+[38] [Step Debug] <- breakpoint_list -i 4
+[39] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_list -i 5
+[38] [Step Debug] <- breakpoint_list -i 5
+[39] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_list -i 6
+[38] [Step Debug] <- breakpoint_list -i 6
+[39] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[38] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[39] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[38] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[39] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[38] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[39] [Step Debug] ->
+
+[38] [Step Debug] <- run -i 11
+[39] [Step Debug] <- run -i 11
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- stop -i 12
+[38] [Step Debug] ->
+
+[38] Log closed at 2024-10-18 07:58:48.037150
+
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- stop -i 12
+[39] [Step Debug] ->
+
+[39] Log closed at 2024-10-18 07:58:48.428607
+
+[26] Log opened at 2024-10-18 07:58:48.481602
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 1
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 2
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 3
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[26] [Step Debug] ->
+
+[38] Log opened at 2024-10-18 07:58:48.497565
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[47] Log opened at 2024-10-18 07:58:48.498073
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[38] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ->
+
+[47] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] ->
+
+[26] [Step Debug] <- run -i 6
+[38] [Step Debug] <- run -i 1
+[47] [Step Debug] <- run -i 1
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 2
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 3
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 4
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 5
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 6
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_list -i 7
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- stop -i 8
+[38] [Step Debug] ->
+
+[38] Log closed at 2024-10-18 07:58:48.731612
+
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 7
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 8
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 9
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 10
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 11
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 12
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_remove -i 13 -d 260003
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_remove -i 14 -d 260004
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_remove -i 15 -d 260003
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_remove -i 16 -d 260004
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 18 -t exception -x *
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- stack_get -i 19
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- eval -i 20 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- context_names -i 21 -d 0
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- run -i 22
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- stack_get -i 23
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- eval -i 24 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- context_names -i 25 -d 0
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- run -i 26
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- stack_get -i 27
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- eval -i 28 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- context_names -i 29 -d 0
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- run -i 30
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- stack_get -i 31
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- eval -i 32 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- context_names -i 33 -d 0
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- run -i 34
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- stop -i 35
+[26] [Step Debug] ->
+
+[26] Log closed at 2024-10-18 07:58:54.445230
+
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 2
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 3
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 4
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 5
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 6
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 7
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stop -i 8
+[47] [Step Debug] ->
+
+[47] Log closed at 2024-10-18 07:58:54.577621
+
+[47] Log opened at 2024-10-18 07:58:54.603353
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[47] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 1
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 2
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 3
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- run -i 6
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stack_get -i 7
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- eval -i 8 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_names -i 9 -d 0
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_get -i 10 -d 0 -c 0
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_get -i 11 -d 0 -c 1
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_get -i 12 -d 0 -c 2
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- step_over -i 13
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stack_get -i 14
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- eval -i 15 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_names -i 16 -d 0
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_get -i 17 -d 0 -c 0
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_get -i 18 -d 0 -c 1
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_get -i 19 -d 0 -c 2
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- run -i 20
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stack_get -i 21
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- eval -i 22 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_names -i 23 -d 0
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_get -i 24 -d 0 -c 0
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- run -i 25
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stop -i 26
+[47] [Step Debug] ->
+
+[47] Log closed at 2024-10-18 07:59:28.465252
+
+[45] Log opened at 2024-10-18 07:59:30.931465
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 2
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 3
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- run -i 6
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- stop -i 7
+[45] [Step Debug] ->
+
+[45] Log closed at 2024-10-18 07:59:32.540957
+
+[45] Log opened at 2024-10-18 07:59:32.646865
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 2
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 3
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[45] [Step Debug] ->
+
+[43] Log opened at 2024-10-18 07:59:32.687191
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[43] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[43] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] ->
+
+[45] [Step Debug] <- run -i 6
+[43] [Step Debug] <- run -i 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 7
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 8
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 9
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- stop -i 10
+[45] [Step Debug] ->
+
+[45] Log closed at 2024-10-18 07:59:32.726226
+
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- breakpoint_list -i 2
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- breakpoint_list -i 3
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- breakpoint_list -i 4
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- stop -i 5
+[43] [Step Debug] ->
+
+[43] Log closed at 2024-10-18 07:59:33.118784
+
+[44] Log opened at 2024-10-18 07:59:33.144794
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 2
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 3
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- run -i 6
+[28] Log opened at 2024-10-18 07:59:33.211109
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[46] Log opened at 2024-10-18 07:59:33.211313
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ->
+
+[46] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 1
+[28] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 1
+[46] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 2
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 3
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 4
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 5
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 6
+[28] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 2
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 3
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 4
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 5
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 6
+[46] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[28] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[46] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[46] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[28] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[46] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[46] [Step Debug] ->
+
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[28] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 7
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 8
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 9
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 10
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 11
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 12
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_remove -i 13 -d 440001
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_remove -i 14 -d 440002
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_remove -i 15 -d 440001
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_remove -i 16 -d 440002
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 18 -t exception -x *
+[44] [Step Debug] ->
+
+[28] [Step Debug] <- run -i 11
+[46] [Step Debug] <- run -i 11
+[44] [Step Debug] <- stack_get -i 19
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- eval -i 20 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- context_names -i 21 -d 0
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- run -i 22
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- stack_get -i 23
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- eval -i 24 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- context_names -i 25 -d 0
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- run -i 26
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- stack_get -i 27
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- eval -i 28 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- context_names -i 29 -d 0
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- run -i 30
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- stack_get -i 31
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- eval -i 32 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- context_names -i 33 -d 0
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- run -i 34
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- stop -i 35
+[44] [Step Debug] ->
+
+[44] Log closed at 2024-10-18 07:59:42.337548
+
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stop -i 12
+[28] [Step Debug] ->
+
+[28] Log closed at 2024-10-18 07:59:42.538967
+
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- stop -i 12
+[46] [Step Debug] ->
+
+[46] Log closed at 2024-10-18 07:59:42.669027
+
+[28] Log opened at 2024-10-18 07:59:42.698358
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 1
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 2
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 3
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- run -i 6
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stack_get -i 7
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- eval -i 8 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_names -i 9 -d 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_get -i 10 -d 0 -c 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- step_over -i 11
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stack_get -i 12
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- eval -i 13 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_names -i 14 -d 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_get -i 15 -d 0 -c 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_get -i 16 -d 0 -c 1
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_get -i 17 -d 0 -c 2
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- property_get -i 18 -d 0 -c 0 -n "$builder"
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 19
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_remove -i 20 -d 280008
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 125
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- run -i 22
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stack_get -i 23
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- eval -i 24 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_names -i 25 -d 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- context_get -i 26 -d 0 -c 0
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- run -i 27
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stop -i 28
+[28] [Step Debug] ->
+
+[28] Log closed at 2024-10-18 08:00:56.279666
+
+[26] Log opened at 2024-10-18 08:01:08.465825
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 1
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 2
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 3
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 125
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- run -i 6
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- stop -i 7
+[26] [Step Debug] ->
+
+[26] Log closed at 2024-10-18 08:01:10.069651
+
+[26] Log opened at 2024-10-18 08:01:10.160222
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ->
+
+[47] Log opened at 2024-10-18 08:01:10.162964
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[47] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 1
+[26] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 1
+[47] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 2
+[47] [Step Debug] <- breakpoint_list -i 2
+[26] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 3
+[26] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 3
+[47] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 4
+[47] [Step Debug] <- breakpoint_list -i 4
+[26] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 5
+[47] [Step Debug] <- breakpoint_list -i 5
+[26] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_list -i 6
+[47] [Step Debug] <- breakpoint_list -i 6
+[26] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 125
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[26] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 125
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 125
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[47] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 125
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[26] [Step Debug] ->
+
+[47] [Step Debug] <- run -i 11
+[26] [Step Debug] <- run -i 11
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- stop -i 12
+[26] [Step Debug] ->
+
+[26] Log closed at 2024-10-18 08:01:10.252300
+
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stop -i 12
+[47] [Step Debug] ->
+
+[47] Log closed at 2024-10-18 08:01:10.624406
+
+[47] Log opened at 2024-10-18 08:01:10.681570
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[47] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 1
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 2
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 3
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 125
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[47] [Step Debug] ->
+
+[45] Log opened at 2024-10-18 08:01:10.703572
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[48] Log opened at 2024-10-18 08:01:10.703680
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[47] [Step Debug] <- run -i 6
+[45] [Step Debug] <- run -i 1
+[48] [Step Debug] <- run -i 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_list -i 2
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_list -i 3
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_list -i 4
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_list -i 5
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_list -i 6
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_list -i 7
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- stop -i 8
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-10-18 08:01:10.940934
+
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 7
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 8
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 9
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 10
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 11
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 12
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_remove -i 13 -d 470006
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_remove -i 14 -d 470007
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_remove -i 15 -d 470006
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_remove -i 16 -d 470007
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 125
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 18 -t exception -x *
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stack_get -i 19
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- eval -i 20 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_names -i 21 -d 0
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- run -i 22
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stack_get -i 23
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- eval -i 24 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_names -i 25 -d 0
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- run -i 26
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stack_get -i 27
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- eval -i 28 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_names -i 29 -d 0
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- run -i 30
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stack_get -i 31
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- eval -i 32 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_names -i 33 -d 0
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- run -i 34
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stop -i 35
+[47] [Step Debug] ->
+
+[47] Log closed at 2024-10-18 08:01:22.229173
+
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 2
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 3
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 4
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 5
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 6
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 7
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- stop -i 8
+[45] [Step Debug] ->
+
+[45] Log closed at 2024-10-18 08:01:22.369323
+
+[45] Log opened at 2024-10-18 08:01:22.398335
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 2
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 3
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 125
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- run -i 6
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- stop -i 7
+[45] [Step Debug] ->
+
+[45] Log closed at 2024-10-18 08:01:22.931123
+
+[46] Log opened at 2024-10-18 09:46:17.271549
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[46] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 1
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 2
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 3
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- run -i 6
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- stop -i 7
+[46] [Step Debug] ->
+
+[46] Log closed at 2024-10-18 09:46:19.031480
+
+[46] Log opened at 2024-10-18 09:46:19.120555
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] Log opened at 2024-10-18 09:46:19.121828
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[46] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ->
+
+[28] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 1
+[46] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 1
+[28] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 2
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 3
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 4
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 5
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_list -i 6
+[46] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 2
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 3
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 4
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 5
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_list -i 6
+[28] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[28] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[28] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[46] [Step Debug] ->
+
+[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[28] [Step Debug] ->
+
+[46] [Step Debug] <- run -i 11
+[28] [Step Debug] <- run -i 11
+[28] [Step Debug] ->
+
+[28] [Step Debug] <- stop -i 12
+[28] [Step Debug] ->
+
+[28] Log closed at 2024-10-18 09:46:19.209815
+
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- stop -i 12
+[46] [Step Debug] ->
+
+[46] Log closed at 2024-10-18 09:46:19.578680
+
+[47] Log opened at 2024-10-18 09:46:19.601757
+[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47'
+[47] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[47] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 1
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 2
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 3
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[47] [Step Debug] ->
+
+[45] Log opened at 2024-10-18 09:46:19.660283
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ->
+
+[44] Log opened at 2024-10-18 09:46:19.661459
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ->
+
+[47] [Step Debug] <- run -i 6
+[45] [Step Debug] <- run -i 1
+[44] [Step Debug] <- run -i 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 2
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 3
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 4
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 5
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 6
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_list -i 7
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- stop -i 8
+[45] [Step Debug] ->
+
+[45] Log closed at 2024-10-18 09:46:19.933980
+
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 7
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 8
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 9
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 10
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 11
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 12
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_remove -i 13 -d 470010
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_remove -i 14 -d 470011
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_remove -i 15 -d 470010
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_remove -i 16 -d 470011
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 18 -t exception -x *
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stack_get -i 19
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- eval -i 20 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- context_names -i 21 -d 0
+[47] [Step Debug] ->
+
+[48] Log opened at 2024-10-18 09:46:47.492828
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[48] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_list -i 1
+[47] [Step Debug] <- breakpoint_list -i 22
+[48] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_list -i 2
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_list -i 3
+[48] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 23
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_list -i 24
+[47] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[48] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_remove -i 25 -d 470012
+[47] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[47] [Step Debug] <- breakpoint_remove -i 26 -d 470013
+[48] [Step Debug] ->
+
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- breakpoint_set -i 28 -t exception -x *
+[47] [Step Debug] ->
+
+[47] [Step Debug] <- stop -i 29
+[47] [Step Debug] ->
+
+[48] [Step Debug] <- stop -i 6
+[48] [Step Debug] ->
+
+[47] [Step Debug] -> query('SELECT `chats`....', 0)
+#1 /var/www/html/ci4/vendor/codeigniter4/framework/system/Database/BaseConnection.php(734): CodeIgniter\Database\MySQLi\Connection->execute('SELECT `chats`....')
+#2 /var/www/html/ci4/vendor/codeigniter4/framework/system/Database/BaseConnection.php(648): CodeIgniter\Database\BaseConnection->simpleQuery('SELECT `chats`....')
+#3 /var/www/html/ci4/vendor/codeigniter4/framework/system/Database/BaseBuilder.php(1644): CodeIgniter\Database\BaseConnection->query('SELECT `chats`....', Array, false)
+#4 /var/www/html/ci4/app/Models/Chat/ChatModel.php(362): CodeIgniter\Database\BaseBuilder->get()
+#5 /var/www/html/ci4/app/Controllers/Chat/ChatController.php(240): App\Models\Chat\ChatModel->getChatInternalNotifications()
+#6 /var/www/html/ci4/vendor/codeigniter4/framework/system/CodeIgniter.php(933): App\Controllers\Chat\ChatController->get_chat_cliente('$1')
+#7 /var/www/html/ci4/vendor/codeigniter4/framework/system/CodeIgniter.php(509): CodeIgniter\CodeIgniter->runController(Object(App\Controllers\Chat\ChatController))
+#8 /var/www/html/ci4/vendor/codeigniter4/framework/system/CodeIgniter.php(355): CodeIgniter\CodeIgniter->handleRequest(NULL, Object(Config\Cache), false)
+#9 /var/www/html/ci4/vendor/codeigniter4/framework/system/Boot.php(325): CodeIgniter\CodeIgniter->run()
+#10 /var/www/html/ci4/vendor/codeigniter4/framework/system/Boot.php(67): CodeIgniter\Boot::runCodeIgniter(Object(CodeIgniter\CodeIgniter))
+#11 /var/www/html/httpdocs/index.php(56): CodeIgniter\Boot::bootWeb(Object(Config\Paths))
+#12 {main}
+ thrown]]>
+
+[47] [Step Debug] -> query('SELECT `chats`....', 0)
+#1 /var/www/html/ci4/vendor/codeigniter4/framework/system/Database/BaseConnection.php(734): CodeIgniter\Database\MySQLi\Connection->execute('SELECT `chats`....')
+#2 /var/www/html/ci4/vendor/codeigniter4/framework/system/Database/BaseConnection.php(648): CodeIgniter\Database\BaseConnection->simpleQuery('SELECT `chats`....')
+#3 /var/www/html/ci4/vendor/codeigniter4/framework/system/Database/BaseBuilder.php(1644): CodeIgniter\Database\BaseConnection->query('SELECT `chats`....', Array, false)
+#4 /var/www/html/ci4/app/Models/Chat/ChatModel.php(362): CodeIgniter\Database\BaseBuilder->get()
+#5 /var/www/html/ci4/app/Controllers/Chat/ChatController.php(240): App\Models\Chat\ChatModel->getChatInternalNotifications()
+#6 /var/www/html/ci4/vendor/codeigniter4/framework/system/CodeIgniter.php(933): App\Controllers\Chat\ChatController->get_chat_cliente('$1')
+#7 /var/www/html/ci4/vendor/codeigniter4/framework/system/CodeIgniter.php(509): CodeIgniter\CodeIgniter->runController(Object(App\Controllers\Chat\ChatController))
+#8 /var/www/html/ci4/vendor/codeigniter4/framework/system/CodeIgniter.php(355): CodeIgniter\CodeIgniter->handleRequest(NULL, Object(Config\Cache), false)
+#9 /var/www/html/ci4/vendor/codeigniter4/framework/system/Boot.php(325): CodeIgniter\CodeIgniter->run()
+#10 /var/www/html/ci4/vendor/codeigniter4/framework/system/Boot.php(67): CodeIgniter\Boot::runCodeIgniter(Object(CodeIgniter\CodeIgniter))
+#11 /var/www/html/httpdocs/index.php(56): CodeIgniter\Boot::bootWeb(Object(Config\Paths))
+#12 {main}
+ thrown]]>
+
+[47] [Step Debug] ->
+
+[47] Log closed at 2024-10-18 09:47:02.423246
+
+[42] Log opened at 2024-10-18 09:47:02.423440
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_list -i 1
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_list -i 2
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_list -i 3
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[42] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 2
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 3
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 4
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 5
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 6
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 7
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 8
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 9
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_list -i 10
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- stop -i 11
+[44] [Step Debug] ->
+
+[44] Log closed at 2024-10-18 09:47:02.565742
+
+[42] [Step Debug] <- run -i 6
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- stop -i 7
+[42] [Step Debug] ->
+
+[42] Log closed at 2024-10-18 09:47:04.169323
+
+[42] Log opened at 2024-10-18 09:47:04.297788
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] Log opened at 2024-10-18 09:47:04.342176
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [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).
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] Log closed at 2024-10-18 09:47:04.927793
+
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [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).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [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).
+[28] Log closed at 2024-10-18 09:47:05.353876
+
+[42] Log opened at 2024-10-18 09:47:05.388769
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] Log opened at 2024-10-18 09:47:05.439268
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[46] Log opened at 2024-10-18 09:47:05.444060
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[39] [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).
+[46] [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).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [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).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [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).
+[39] Log closed at 2024-10-18 09:47:06.274157
+
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] Log closed at 2024-10-18 09:47:07.006394
+
+[46] [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).
+[46] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[46] [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).
+[46] Log closed at 2024-10-18 09:47:07.346865
+
+[45] Log opened at 2024-10-18 09:47:07.378627
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[45] Log closed at 2024-10-18 09:47:08.472907
+
+[50] Log opened at 2024-10-18 10:06:26.837226
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[50] [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).
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[50] [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).
+[50] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[50] [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).
+[50] Log closed at 2024-10-18 10:06:29.099416
+
+[51] Log opened at 2024-10-18 10:06:29.217316
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] Log opened at 2024-10-18 10:06:29.218399
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] [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).
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] Log closed at 2024-10-18 10:06:29.853293
+
+[51] [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).
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] [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).
+[51] Log closed at 2024-10-18 10:06:30.234107
+
+[51] Log opened at 2024-10-18 10:06:30.258921
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] Log opened at 2024-10-18 10:06:30.328652
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] Log opened at 2024-10-18 10:06:30.329116
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] [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).
+[42] [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).
+[28] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] Log closed at 2024-10-18 10:06:31.186924
+
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] [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).
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] [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).
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] [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).
+[51] Log closed at 2024-10-18 10:06:31.910801
+
+[28] [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).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [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).
+[28] Log closed at 2024-10-18 10:06:32.245999
+
+[42] Log opened at 2024-10-18 10:06:32.272008
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] Log closed at 2024-10-18 10:06:33.348313
+
+[45] Log opened at 2024-10-18 10:07:49.030462
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[45] Log closed at 2024-10-18 10:07:51.205170
+
+[45] Log opened at 2024-10-18 10:07:51.301308
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] Log opened at 2024-10-18 10:07:51.303629
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[44] [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).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[45] Log closed at 2024-10-18 10:07:51.930009
+
+[44] [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).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [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).
+[44] Log closed at 2024-10-18 10:07:52.303565
+
+[44] Log opened at 2024-10-18 10:07:52.399211
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] Log opened at 2024-10-18 10:07:52.484300
+[49] Log opened at 2024-10-18 10:07:52.484300
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [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).
+[49] [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).
+[52] [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).
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [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).
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [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).
+[52] Log closed at 2024-10-18 10:07:53.319229
+
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [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).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [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).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [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).
+[44] Log closed at 2024-10-18 10:07:54.036875
+
+[49] [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).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [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).
+[49] Log closed at 2024-10-18 10:07:54.371927
+
+[52] Log opened at 2024-10-18 10:07:54.454872
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [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).
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [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).
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [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).
+[52] Log closed at 2024-10-18 10:07:55.564275
+
+[39] Log opened at 2024-10-18 10:17:45.388169
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [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).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [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).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [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).
+[39] Log closed at 2024-10-18 10:17:47.613444
+
+[39] Log opened at 2024-10-18 10:17:47.720879
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] Log opened at 2024-10-18 10:17:47.725306
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [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).
+[26] [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).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [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).
+[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[39] [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).
+[39] Log closed at 2024-10-18 10:17:48.350747
+
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] Log closed at 2024-10-18 10:17:48.741654
+
+[26] Log opened at 2024-10-18 10:17:48.772691
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] Log opened at 2024-10-18 10:17:48.844297
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] Log opened at 2024-10-18 10:17:48.844303
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[28] [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).
+[42] [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).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [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).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [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).
+[28] Log closed at 2024-10-18 10:17:49.691194
+
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] Log closed at 2024-10-18 10:17:50.402461
+
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] Log closed at 2024-10-18 10:17:50.741652
+
+[28] Log opened at 2024-10-18 10:17:50.771825
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [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).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [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).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [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).
+[28] Log closed at 2024-10-18 10:17:51.858378
+
+[45] Log opened at 2024-10-18 10:18:11.189486
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[45] Log closed at 2024-10-18 10:18:13.368766
+
+[45] Log opened at 2024-10-18 10:18:13.510103
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] Log opened at 2024-10-18 10:18:13.549121
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [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).
+[45] [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).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[45] Log closed at 2024-10-18 10:18:14.139229
+
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [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).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [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).
+[49] Log closed at 2024-10-18 10:18:14.575076
+
+[51] Log opened at 2024-10-18 10:18:14.658718
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] Log opened at 2024-10-18 10:18:14.667801
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] Log opened at 2024-10-18 10:18:14.669090
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] [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).
+[26] [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).
+[52] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] Log closed at 2024-10-18 10:18:15.493842
+
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] [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).
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] [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).
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] [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).
+[51] Log closed at 2024-10-18 10:18:16.210463
+
+[52] [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).
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [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).
+[52] Log closed at 2024-10-18 10:18:16.546082
+
+[26] Log opened at 2024-10-18 10:18:16.570087
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] Log closed at 2024-10-18 10:18:17.652895
+
+[28] Log opened at 2024-10-18 10:18:30.519818
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [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).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [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).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [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).
+[28] Log closed at 2024-10-18 10:18:32.690176
+
+[28] Log opened at 2024-10-18 10:18:32.811406
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] Log opened at 2024-10-18 10:18:32.845857
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [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).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] [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).
+[28] [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).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [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).
+[28] Log closed at 2024-10-18 10:18:33.439992
+
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] [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).
+[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[51] [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).
+[51] Log closed at 2024-10-18 10:18:33.845427
+
+[49] Log opened at 2024-10-18 10:18:33.876997
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] Log opened at 2024-10-18 10:18:33.951778
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] Log opened at 2024-10-18 10:18:33.956940
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [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).
+[45] [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).
+[44] [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).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[45] Log closed at 2024-10-18 10:18:34.781976
+
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [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).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [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).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [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).
+[49] Log closed at 2024-10-18 10:18:35.494018
+
+[44] [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).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [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).
+[44] Log closed at 2024-10-18 10:18:35.827439
+
+[45] Log opened at 2024-10-18 10:18:35.852319
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[45] Log closed at 2024-10-18 10:18:36.950992
+
+[26] Log opened at 2024-10-18 10:18:48.603107
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] Log closed at 2024-10-18 10:18:50.728108
+
+[26] Log opened at 2024-10-18 10:18:50.836013
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] Log opened at 2024-10-18 10:18:50.870195
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [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).
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] Log closed at 2024-10-18 10:18:51.464922
+
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [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).
+[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[28] [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).
+[28] Log closed at 2024-10-18 10:18:51.887719
+
+[49] Log opened at 2024-10-18 10:18:51.914239
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] Log opened at 2024-10-18 10:18:51.977272
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] Log opened at 2024-10-18 10:18:51.978345
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [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).
+[53] [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).
+[42] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] Log closed at 2024-10-18 10:18:52.823215
+
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [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).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [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).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [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).
+[49] Log closed at 2024-10-18 10:18:53.532390
+
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] Log closed at 2024-10-18 10:18:53.863007
+
+[53] Log opened at 2024-10-18 10:18:53.889577
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] Log closed at 2024-10-18 10:18:54.976576
+
+[45] Log opened at 2024-10-18 10:19:08.277841
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[45] Log closed at 2024-10-18 10:19:10.433038
+
+[45] Log opened at 2024-10-18 10:19:10.574251
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] Log opened at 2024-10-18 10:19:10.616551
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [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).
+[45] [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).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[45] Log closed at 2024-10-18 10:19:11.203536
+
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [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).
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [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).
+[52] Log closed at 2024-10-18 10:19:11.617728
+
+[26] Log opened at 2024-10-18 10:19:11.725289
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] Log opened at 2024-10-18 10:19:11.746764
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] Log opened at 2024-10-18 10:19:11.748602
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[55] [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).
+[54] [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).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [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).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [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).
+[55] Log closed at 2024-10-18 10:19:12.587955
+
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] Log closed at 2024-10-18 10:19:13.308852
+
+[54] [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).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [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).
+[54] Log closed at 2024-10-18 10:19:13.647775
+
+[55] Log opened at 2024-10-18 10:19:13.672065
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [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).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [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).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [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).
+[55] Log closed at 2024-10-18 10:19:14.755241
+
+[42] Log opened at 2024-10-18 10:19:45.245731
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] Log closed at 2024-10-18 10:19:47.407906
+
+[42] Log opened at 2024-10-18 10:19:47.517341
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] Log opened at 2024-10-18 10:19:47.518604
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[44] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] Log closed at 2024-10-18 10:19:48.145790
+
+[44] [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).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [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).
+[44] Log closed at 2024-10-18 10:19:48.526352
+
+[44] Log opened at 2024-10-18 10:19:48.612019
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] Log opened at 2024-10-18 10:19:48.626372
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] Log opened at 2024-10-18 10:19:48.649401
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [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).
+[53] [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).
+[56] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] Log closed at 2024-10-18 10:19:49.451191
+
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [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).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [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).
+[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[44] [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).
+[44] Log closed at 2024-10-18 10:19:50.168932
+
+[56] [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).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [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).
+[56] Log closed at 2024-10-18 10:19:50.508498
+
+[53] Log opened at 2024-10-18 10:19:50.537446
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] Log closed at 2024-10-18 10:19:51.634690
+
+[49] Log opened at 2024-10-18 10:20:27.272021
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [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).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [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).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [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).
+[49] Log closed at 2024-10-18 10:20:29.383897
+
+[49] Log opened at 2024-10-18 10:20:29.484229
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] Log opened at 2024-10-18 10:20:29.486522
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [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).
+[52] [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).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [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).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [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).
+[49] Log closed at 2024-10-18 10:20:30.112479
+
+[52] [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).
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [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).
+[52] Log closed at 2024-10-18 10:20:30.497246
+
+[52] Log opened at 2024-10-18 10:20:30.529160
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] Log opened at 2024-10-18 10:20:30.601868
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] Log opened at 2024-10-18 10:20:30.638947
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [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).
+[54] [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).
+[55] [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).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [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).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [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).
+[54] Log closed at 2024-10-18 10:20:31.427553
+
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [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).
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [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).
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [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).
+[52] Log closed at 2024-10-18 10:20:32.128889
+
+[55] [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).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [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).
+[55] Log closed at 2024-10-18 10:20:32.461197
+
+[54] Log opened at 2024-10-18 10:20:32.493144
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [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).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [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).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [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).
+[54] Log closed at 2024-10-18 10:20:33.567895
+
+[26] Log opened at 2024-10-18 10:20:57.753853
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] Log closed at 2024-10-18 10:20:59.892234
+
+[26] Log opened at 2024-10-18 10:21:00.006785
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] Log opened at 2024-10-18 10:21:00.040807
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [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).
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] Log closed at 2024-10-18 10:21:00.636424
+
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [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).
+[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[52] [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).
+[52] Log closed at 2024-10-18 10:21:01.051522
+
+[53] Log opened at 2024-10-18 10:21:01.140029
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] Log opened at 2024-10-18 10:21:01.155042
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] Log opened at 2024-10-18 10:21:01.159083
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[49] [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).
+[42] [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).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [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).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [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).
+[49] Log closed at 2024-10-18 10:21:01.990567
+
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] Log closed at 2024-10-18 10:21:02.709287
+
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] Log closed at 2024-10-18 10:21:03.046484
+
+[49] Log opened at 2024-10-18 10:21:03.073775
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [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).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [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).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [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).
+[49] Log closed at 2024-10-18 10:21:04.165853
+
+[54] Log opened at 2024-10-18 10:21:23.000895
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [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).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [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).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [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).
+[54] Log closed at 2024-10-18 10:21:25.144014
+
+[54] Log opened at 2024-10-18 10:21:25.289207
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[57] Log opened at 2024-10-18 10:21:25.324293
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [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).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[57] [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).
+[54] [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).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [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).
+[54] Log closed at 2024-10-18 10:21:25.919187
+
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[57] [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).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[57] [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).
+[57] Log closed at 2024-10-18 10:21:26.359561
+
+[53] Log opened at 2024-10-18 10:21:26.461777
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] Log opened at 2024-10-18 10:21:26.527679
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] Log opened at 2024-10-18 10:21:26.553300
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[26] [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).
+[45] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] Log closed at 2024-10-18 10:21:27.364324
+
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] Log closed at 2024-10-18 10:21:28.081105
+
+[45] [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).
+[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[45] [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).
+[45] Log closed at 2024-10-18 10:21:28.420311
+
+[26] Log opened at 2024-10-18 10:21:28.447408
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] Log closed at 2024-10-18 10:21:29.539029
+
+[49] Log opened at 2024-10-18 10:22:54.326786
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [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).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [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).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [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).
+[49] Log closed at 2024-10-18 10:22:56.468213
+
+[49] Log opened at 2024-10-18 10:22:56.622801
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] Log opened at 2024-10-18 10:22:56.662495
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [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).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [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).
+[49] [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).
+[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[49] [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).
+[49] Log closed at 2024-10-18 10:22:57.252060
+
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [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).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [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).
+[56] Log closed at 2024-10-18 10:22:57.663269
+
+[55] Log opened at 2024-10-18 10:22:57.704048
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] Log opened at 2024-10-18 10:22:57.773906
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] Log opened at 2024-10-18 10:22:57.776057
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [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).
+[53] [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).
+[54] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] Log closed at 2024-10-18 10:22:58.612800
+
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [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).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [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).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [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).
+[55] Log closed at 2024-10-18 10:22:59.321868
+
+[54] [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).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [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).
+[54] Log closed at 2024-10-18 10:22:59.664065
+
+[53] Log opened at 2024-10-18 10:22:59.693918
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] Log closed at 2024-10-18 10:23:00.767583
+
+[57] Log opened at 2024-10-18 10:23:05.027810
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[57] [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).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[57] [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).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[57] [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).
+[57] Log closed at 2024-10-18 10:23:07.199245
+
+[57] Log opened at 2024-10-18 10:23:07.363382
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] Log opened at 2024-10-18 10:23:07.397503
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[57] [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).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [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).
+[57] [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).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[57] [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).
+[57] Log closed at 2024-10-18 10:23:07.992098
+
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [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).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [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).
+[55] Log closed at 2024-10-18 10:23:08.407761
+
+[59] Log opened at 2024-10-18 10:23:08.433214
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] Log opened at 2024-10-18 10:23:08.494200
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] Log opened at 2024-10-18 10:23:08.496510
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [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).
+[42] [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).
+[26] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] Log closed at 2024-10-18 10:23:09.322433
+
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [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).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [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).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [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).
+[59] Log closed at 2024-10-18 10:23:10.041480
+
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] Log closed at 2024-10-18 10:23:10.376028
+
+[42] Log opened at 2024-10-18 10:23:10.399364
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] Log closed at 2024-10-18 10:23:11.495683
+
+[56] Log opened at 2024-10-18 10:23:20.938958
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [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).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [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).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [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).
+[56] Log closed at 2024-10-18 10:23:23.096569
+
+[56] Log opened at 2024-10-18 10:23:23.251996
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] Log opened at 2024-10-18 10:23:23.290952
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [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).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [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).
+[56] [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).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [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).
+[56] Log closed at 2024-10-18 10:23:23.880378
+
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [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).
+[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[55] [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).
+[55] Log closed at 2024-10-18 10:23:24.295325
+
+[54] Log opened at 2024-10-18 10:23:24.393344
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] Log opened at 2024-10-18 10:23:24.396852
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[57] Log opened at 2024-10-18 10:23:24.416841
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [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).
+[53] [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).
+[57] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] Log closed at 2024-10-18 10:23:25.241387
+
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [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).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [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).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [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).
+[54] Log closed at 2024-10-18 10:23:25.967077
+
+[57] [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).
+[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[57] [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).
+[57] Log closed at 2024-10-18 10:23:26.300795
+
+[53] Log opened at 2024-10-18 10:23:26.324911
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] Log closed at 2024-10-18 10:23:27.418773
+
+[42] Log opened at 2024-10-18 10:23:32.748158
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] Log closed at 2024-10-18 10:23:34.879817
+
+[42] Log opened at 2024-10-18 10:23:35.041939
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] Log opened at 2024-10-18 10:23:35.088198
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [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).
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] Log closed at 2024-10-18 10:23:35.670409
+
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [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).
+[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[54] [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).
+[54] Log closed at 2024-10-18 10:23:36.105322
+
+[58] Log opened at 2024-10-18 10:23:36.187758
+[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58'
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] Log opened at 2024-10-18 10:23:36.266529
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] Log opened at 2024-10-18 10:23:36.267590
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[58] [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).
+[60] [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).
+[59] [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).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] [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).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] [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).
+[60] Log closed at 2024-10-18 10:23:37.098596
+
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[58] [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).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[58] [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).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[58] [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).
+[58] Log closed at 2024-10-18 10:23:37.813724
+
+[59] [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).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [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).
+[59] Log closed at 2024-10-18 10:23:38.154508
+
+[60] Log opened at 2024-10-18 10:23:38.177971
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] [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).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] [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).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] [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).
+[60] Log closed at 2024-10-18 10:23:39.268392
+
+[53] Log opened at 2024-10-18 10:24:00.807679
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] Log closed at 2024-10-18 10:24:02.968931
+
+[53] Log opened at 2024-10-18 10:24:03.106020
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] Log opened at 2024-10-18 10:24:03.158239
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] Log closed at 2024-10-18 10:24:03.738869
+
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[26] [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).
+[26] Log closed at 2024-10-18 10:24:04.184433
+
+[56] Log opened at 2024-10-18 10:24:04.211485
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] Log opened at 2024-10-18 10:24:04.266220
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[61] Log opened at 2024-10-18 10:24:04.267458
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [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).
+[42] [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).
+[61] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] Log closed at 2024-10-18 10:24:05.094125
+
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [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).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [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).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [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).
+[56] Log closed at 2024-10-18 10:24:05.810065
+
+[61] [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).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[61] [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).
+[61] Log closed at 2024-10-18 10:24:06.143753
+
+[42] Log opened at 2024-10-18 10:24:06.171229
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] Log closed at 2024-10-18 10:24:07.257162
+
+[60] Log opened at 2024-10-18 10:25:18.994949
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] [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).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] [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).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] [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).
+[60] Log closed at 2024-10-18 10:25:21.134255
+
+[60] Log opened at 2024-10-18 10:25:21.281289
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] Log opened at 2024-10-18 10:25:21.319997
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] [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).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[60] [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).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] [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).
+[60] Log closed at 2024-10-18 10:25:21.909834
+
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] Log closed at 2024-10-18 10:25:22.331184
+
+[58] Log opened at 2024-10-18 10:25:22.361459
+[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58'
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] Log opened at 2024-10-18 10:25:22.431522
+[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62'
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] Log opened at 2024-10-18 10:25:22.440561
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[58] [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).
+[62] [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).
+[56] [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).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [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).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [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).
+[62] Log closed at 2024-10-18 10:25:23.264281
+
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[58] [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).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[58] [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).
+[58] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[58] [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).
+[58] Log closed at 2024-10-18 10:25:23.982926
+
+[56] [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).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [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).
+[56] Log closed at 2024-10-18 10:25:24.322991
+
+[62] Log opened at 2024-10-18 10:25:24.351108
+[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62'
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [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).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [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).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [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).
+[62] Log closed at 2024-10-18 10:25:25.428262
+
+[42] Log opened at 2024-10-18 10:25:36.906773
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] Log closed at 2024-10-18 10:25:39.095409
+
+[42] Log opened at 2024-10-18 10:25:39.249295
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] Log opened at 2024-10-18 10:25:39.289344
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] [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).
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] Log closed at 2024-10-18 10:25:39.879302
+
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] [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).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] [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).
+[63] Log closed at 2024-10-18 10:25:40.290110
+
+[60] Log opened at 2024-10-18 10:25:40.362983
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] Log opened at 2024-10-18 10:25:40.381293
+[53] Log opened at 2024-10-18 10:25:40.381293
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] [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).
+[59] [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).
+[53] [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).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [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).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [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).
+[59] Log closed at 2024-10-18 10:25:41.206856
+
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] [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).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] [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).
+[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[60] [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).
+[60] Log closed at 2024-10-18 10:25:41.909241
+
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] Log closed at 2024-10-18 10:25:42.242129
+
+[59] Log opened at 2024-10-18 10:25:42.264603
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [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).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [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).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [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).
+[59] Log closed at 2024-10-18 10:25:43.344253
+
+[62] Log opened at 2024-10-18 10:27:40.316509
+[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62'
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [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).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [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).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [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).
+[62] Log closed at 2024-10-18 10:27:42.441894
+
+[62] Log opened at 2024-10-18 10:27:42.642923
+[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62'
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] Log opened at 2024-10-18 10:27:42.679565
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [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).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] [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).
+[62] [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).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [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).
+[62] Log closed at 2024-10-18 10:27:43.271253
+
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] [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).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] [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).
+[63] Log closed at 2024-10-18 10:27:43.680595
+
+[42] Log opened at 2024-10-18 10:27:43.717611
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[61] Log opened at 2024-10-18 10:27:43.795262
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] Log opened at 2024-10-18 10:27:43.800584
+[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64'
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[61] [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).
+[64] [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).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[61] [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).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[61] [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).
+[61] Log closed at 2024-10-18 10:27:44.627350
+
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[42] [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).
+[42] Log closed at 2024-10-18 10:27:45.344824
+
+[64] [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).
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] [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).
+[64] Log closed at 2024-10-18 10:27:45.679343
+
+[61] Log opened at 2024-10-18 10:27:45.702197
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[61] [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).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[61] [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).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[61] [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).
+[61] Log closed at 2024-10-18 10:27:46.788590
+
+[59] Log opened at 2024-10-18 10:28:13.570836
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [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).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [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).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [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).
+[59] Log closed at 2024-10-18 10:28:15.765278
+
+[59] Log opened at 2024-10-18 10:28:15.873914
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] Log opened at 2024-10-18 10:28:15.917552
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [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).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] [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).
+[59] [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).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [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).
+[59] Log closed at 2024-10-18 10:28:16.502831
+
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] [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).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] [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).
+[63] Log closed at 2024-10-18 10:28:16.944504
+
+[62] Log opened at 2024-10-18 10:28:17.065354
+[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62'
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] Log opened at 2024-10-18 10:28:17.079235
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] Log opened at 2024-10-18 10:28:17.081831
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [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).
+[56] [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).
+[65] [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).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [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).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [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).
+[56] Log closed at 2024-10-18 10:28:17.908517
+
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [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).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [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).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [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).
+[62] Log closed at 2024-10-18 10:28:18.629489
+
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] Log closed at 2024-10-18 10:28:18.970714
+
+[56] Log opened at 2024-10-18 10:28:18.994599
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [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).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [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).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [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).
+[56] Log closed at 2024-10-18 10:28:20.072533
+
+[61] Log opened at 2024-10-18 10:29:09.258122
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[61] [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).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[61] [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).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[61] [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).
+[61] Log closed at 2024-10-18 10:29:11.388110
+
+[61] Log opened at 2024-10-18 10:29:11.538861
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] Log opened at 2024-10-18 10:29:11.578572
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[61] [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).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] [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).
+[61] [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).
+[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[61] [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).
+[61] Log closed at 2024-10-18 10:29:12.167950
+
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] [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).
+[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[63] [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).
+[63] Log closed at 2024-10-18 10:29:12.599067
+
+[59] Log opened at 2024-10-18 10:29:12.630808
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] Log opened at 2024-10-18 10:29:12.694821
+[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62'
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] Log opened at 2024-10-18 10:29:12.727374
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [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).
+[62] [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).
+[53] [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).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [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).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [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).
+[62] Log closed at 2024-10-18 10:29:13.525142
+
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [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).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [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).
+[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[59] [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).
+[59] Log closed at 2024-10-18 10:29:14.229537
+
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] Log closed at 2024-10-18 10:29:14.561588
+
+[62] Log opened at 2024-10-18 10:29:14.590105
+[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62'
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [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).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [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).
+[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[62] [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).
+[62] Log closed at 2024-10-18 10:29:15.688856
+
+[65] Log opened at 2024-10-18 10:30:13.044127
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] Log closed at 2024-10-18 10:30:15.208931
+
+[65] Log opened at 2024-10-18 10:30:15.415755
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] Log opened at 2024-10-18 10:30:15.450026
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] Log closed at 2024-10-18 10:30:16.044894
+
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] Log closed at 2024-10-18 10:30:16.471404
+
+[64] Log opened at 2024-10-18 10:30:16.536705
+[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64'
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] Log opened at 2024-10-18 10:30:16.551976
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] Log opened at 2024-10-18 10:30:16.552326
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] [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).
+[56] [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).
+[67] [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).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [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).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [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).
+[56] Log closed at 2024-10-18 10:30:17.382947
+
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] [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).
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] [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).
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] [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).
+[64] Log closed at 2024-10-18 10:30:18.089703
+
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] Log closed at 2024-10-18 10:30:18.427976
+
+[56] Log opened at 2024-10-18 10:30:18.450181
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [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).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [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).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [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).
+[56] Log closed at 2024-10-18 10:30:19.537245
+
+[66] Log opened at 2024-10-18 10:30:32.477010
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] Log closed at 2024-10-18 10:30:34.655589
+
+[66] Log opened at 2024-10-18 10:30:34.791421
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] Log opened at 2024-10-18 10:30:34.825519
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[66] [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).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] Log closed at 2024-10-18 10:30:35.420453
+
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] Log closed at 2024-10-18 10:30:35.829322
+
+[64] Log opened at 2024-10-18 10:30:35.858973
+[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64'
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] Log opened at 2024-10-18 10:30:35.918044
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] Log opened at 2024-10-18 10:30:35.918206
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] [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).
+[65] [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).
+[68] [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).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [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).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [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).
+[68] Log closed at 2024-10-18 10:30:36.746518
+
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] [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).
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] [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).
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] [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).
+[64] Log closed at 2024-10-18 10:30:37.450434
+
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] Log closed at 2024-10-18 10:30:37.788932
+
+[68] Log opened at 2024-10-18 10:30:37.821113
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [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).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [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).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [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).
+[68] Log closed at 2024-10-18 10:30:38.902134
+
+[67] Log opened at 2024-10-18 10:33:03.692529
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] Log closed at 2024-10-18 10:33:05.888221
+
+[67] Log opened at 2024-10-18 10:33:06.022363
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] Log opened at 2024-10-18 10:33:06.065675
+[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64'
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] [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).
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] Log closed at 2024-10-18 10:33:06.650981
+
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] [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).
+[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[64] [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).
+[64] Log closed at 2024-10-18 10:33:07.068096
+
+[66] Log opened at 2024-10-18 10:33:07.093069
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] Log opened at 2024-10-18 10:33:07.161682
+[56] Log opened at 2024-10-18 10:33:07.161682
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[53] [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).
+[56] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] Log closed at 2024-10-18 10:33:07.992026
+
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] Log closed at 2024-10-18 10:33:08.713845
+
+[56] [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).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [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).
+[56] Log closed at 2024-10-18 10:33:09.051671
+
+[53] Log opened at 2024-10-18 10:33:09.079973
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] Log closed at 2024-10-18 10:33:10.163471
+
+[65] Log opened at 2024-10-18 10:33:22.539641
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] Log closed at 2024-10-18 10:33:24.676990
+
+[65] Log opened at 2024-10-18 10:33:24.783697
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] Log opened at 2024-10-18 10:33:24.816948
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [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).
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] Log closed at 2024-10-18 10:33:25.412512
+
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [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).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [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).
+[68] Log closed at 2024-10-18 10:33:25.835766
+
+[67] Log opened at 2024-10-18 10:33:25.860127
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] Log opened at 2024-10-18 10:33:25.907346
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] Log opened at 2024-10-18 10:33:25.928158
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[66] [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).
+[70] [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).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] Log closed at 2024-10-18 10:33:26.733137
+
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] Log closed at 2024-10-18 10:33:27.445977
+
+[70] [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).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [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).
+[70] Log closed at 2024-10-18 10:33:27.780703
+
+[66] Log opened at 2024-10-18 10:33:27.807067
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] Log closed at 2024-10-18 10:33:28.908236
+
+[69] Log opened at 2024-10-18 10:33:42.263321
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] Log closed at 2024-10-18 10:33:44.394778
+
+[69] Log opened at 2024-10-18 10:33:44.549339
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] Log opened at 2024-10-18 10:33:44.582572
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [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).
+[69] [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).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] Log closed at 2024-10-18 10:33:45.178117
+
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [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).
+[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[56] [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).
+[56] Log closed at 2024-10-18 10:33:45.596790
+
+[65] Log opened at 2024-10-18 10:33:45.627051
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] Log opened at 2024-10-18 10:33:45.682344
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] Log opened at 2024-10-18 10:33:45.685933
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[53] [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).
+[67] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] Log closed at 2024-10-18 10:33:46.509771
+
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] Log closed at 2024-10-18 10:33:47.215921
+
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] Log closed at 2024-10-18 10:33:47.553948
+
+[53] Log opened at 2024-10-18 10:33:47.578495
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] Log closed at 2024-10-18 10:33:48.682566
+
+[68] Log opened at 2024-10-18 10:35:14.064668
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [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).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [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).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [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).
+[68] Log closed at 2024-10-18 10:35:16.199365
+
+[68] Log opened at 2024-10-18 10:35:16.354360
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] Log opened at 2024-10-18 10:35:16.401209
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [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).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[68] [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).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [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).
+[68] Log closed at 2024-10-18 10:35:16.983480
+
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] Log closed at 2024-10-18 10:35:17.405735
+
+[72] Log opened at 2024-10-18 10:35:17.550206
+[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72'
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] Log opened at 2024-10-18 10:35:17.554849
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] Log opened at 2024-10-18 10:35:17.554994
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [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).
+[70] [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).
+[66] [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).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [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).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [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).
+[70] Log closed at 2024-10-18 10:35:18.391318
+
+[66] [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).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] Log closed at 2024-10-18 10:35:18.713519
+
+[70] Log opened at 2024-10-18 10:35:18.753984
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [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).
+[72] [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).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [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).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [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).
+[72] Log closed at 2024-10-18 10:35:19.426814
+
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [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).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [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).
+[70] Log closed at 2024-10-18 10:35:19.897745
+
+[71] Log opened at 2024-10-18 10:35:28.513127
+[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71'
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[71] [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).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[71] [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).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[71] [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).
+[71] Log closed at 2024-10-18 10:35:30.698611
+
+[71] Log opened at 2024-10-18 10:35:30.863834
+[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71'
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] Log opened at 2024-10-18 10:35:30.924997
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[71] [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).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[71] [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).
+[71] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[71] [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).
+[71] Log closed at 2024-10-18 10:35:31.491968
+
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] Log closed at 2024-10-18 10:35:31.947613
+
+[53] Log opened at 2024-10-18 10:35:31.983368
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[73] Log opened at 2024-10-18 10:35:32.047467
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] Log opened at 2024-10-18 10:35:32.070532
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[73] [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).
+[68] [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).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[73] [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).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[73] [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).
+[73] Log closed at 2024-10-18 10:35:32.880351
+
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] Log closed at 2024-10-18 10:35:33.599397
+
+[68] [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).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [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).
+[68] Log closed at 2024-10-18 10:35:33.945826
+
+[73] Log opened at 2024-10-18 10:35:33.974719
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[73] [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).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[73] [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).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[73] [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).
+[73] Log closed at 2024-10-18 10:35:35.074957
+
+[69] Log opened at 2024-10-18 10:35:40.145274
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] Log closed at 2024-10-18 10:35:42.320107
+
+[69] Log opened at 2024-10-18 10:35:42.459393
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] Log opened at 2024-10-18 10:35:42.499178
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[69] [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).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] Log closed at 2024-10-18 10:35:43.088609
+
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] Log closed at 2024-10-18 10:35:43.521613
+
+[70] Log opened at 2024-10-18 10:35:43.547490
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] Log opened at 2024-10-18 10:35:43.597035
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] Log opened at 2024-10-18 10:35:43.597249
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [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).
+[53] [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).
+[66] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] Log closed at 2024-10-18 10:35:44.435018
+
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [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).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [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).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [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).
+[70] Log closed at 2024-10-18 10:35:45.139059
+
+[66] [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).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] Log closed at 2024-10-18 10:35:45.479961
+
+[53] Log opened at 2024-10-18 10:35:45.506767
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] Log closed at 2024-10-18 10:35:46.597192
+
+[67] Log opened at 2024-10-18 10:35:54.730652
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] Log closed at 2024-10-18 10:35:56.856296
+
+[67] Log opened at 2024-10-18 10:35:56.989786
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[73] Log opened at 2024-10-18 10:35:57.029066
+[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73'
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[73] [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).
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] Log closed at 2024-10-18 10:35:57.618335
+
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[73] [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).
+[73] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[73] [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).
+[73] Log closed at 2024-10-18 10:35:58.036368
+
+[68] Log opened at 2024-10-18 10:35:58.068918
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] Log opened at 2024-10-18 10:35:58.123773
+[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72'
+[70] Log opened at 2024-10-18 10:35:58.123765
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [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).
+[72] [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).
+[70] [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).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [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).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [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).
+[70] Log closed at 2024-10-18 10:35:58.953836
+
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [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).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [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).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [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).
+[68] Log closed at 2024-10-18 10:35:59.680873
+
+[72] [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).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [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).
+[72] Log closed at 2024-10-18 10:36:00.022351
+
+[70] Log opened at 2024-10-18 10:36:00.045622
+[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70'
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [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).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [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).
+[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[70] [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).
+[70] Log closed at 2024-10-18 10:36:01.132356
+
+[65] Log opened at 2024-10-18 10:36:14.607492
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] Log closed at 2024-10-18 10:36:16.738396
+
+[65] Log opened at 2024-10-18 10:36:16.897908
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] Log opened at 2024-10-18 10:36:16.948483
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] Log closed at 2024-10-18 10:36:17.528625
+
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] Log closed at 2024-10-18 10:36:17.949396
+
+[67] Log opened at 2024-10-18 10:36:18.028537
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] Log opened at 2024-10-18 10:36:18.037665
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] Log opened at 2024-10-18 10:36:18.038065
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[66] [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).
+[68] [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).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] Log closed at 2024-10-18 10:36:18.868169
+
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] Log closed at 2024-10-18 10:36:19.572925
+
+[68] [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).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [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).
+[68] Log closed at 2024-10-18 10:36:19.911331
+
+[66] Log opened at 2024-10-18 10:36:19.937097
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] Log closed at 2024-10-18 10:36:21.029022
+
+[69] Log opened at 2024-10-18 10:41:20.127052
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] Log closed at 2024-10-18 10:41:22.258121
+
+[69] Log opened at 2024-10-18 10:41:22.435680
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] Log opened at 2024-10-18 10:41:22.467916
+[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72'
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [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).
+[69] [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).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] Log closed at 2024-10-18 10:41:23.066429
+
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [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).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [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).
+[72] Log closed at 2024-10-18 10:41:23.508898
+
+[76] Log opened at 2024-10-18 10:41:23.648271
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] Log opened at 2024-10-18 10:41:23.669438
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] Log opened at 2024-10-18 10:41:23.698386
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [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).
+[65] [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).
+[67] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] Log closed at 2024-10-18 10:41:24.511412
+
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [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).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [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).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [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).
+[76] Log closed at 2024-10-18 10:41:25.215507
+
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] Log closed at 2024-10-18 10:41:25.562283
+
+[65] Log opened at 2024-10-18 10:41:25.599222
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] Log closed at 2024-10-18 10:41:26.698098
+
+[53] Log opened at 2024-10-18 10:41:49.168803
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] Log closed at 2024-10-18 10:41:51.322496
+
+[53] Log opened at 2024-10-18 10:41:51.471290
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] Log opened at 2024-10-18 10:41:51.508831
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] Log closed at 2024-10-18 10:41:52.099727
+
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] Log closed at 2024-10-18 10:41:52.529317
+
+[68] Log opened at 2024-10-18 10:41:52.572530
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] Log opened at 2024-10-18 10:41:52.633506
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] Log opened at 2024-10-18 10:41:52.642878
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [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).
+[69] [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).
+[76] [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).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] Log closed at 2024-10-18 10:41:53.510722
+
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [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).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [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).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [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).
+[68] Log closed at 2024-10-18 10:41:54.234696
+
+[76] [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).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [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).
+[76] Log closed at 2024-10-18 10:41:54.569005
+
+[77] Log opened at 2024-10-18 10:41:54.597527
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [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).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [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).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [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).
+[77] Log closed at 2024-10-18 10:41:55.706587
+
+[72] Log opened at 2024-10-18 10:42:13.681261
+[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72'
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [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).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [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).
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [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).
+[72] Log closed at 2024-10-18 10:42:21.465532
+
+[67] Log opened at 2024-10-18 10:45:47.154006
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_list -i 1
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_list -i 2
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_list -i 3
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_list -i 4
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1280
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- run -i 8
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- stack_get -i 9
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- eval -i 10 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_names -i 11 -d 0
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_get -i 12 -d 0 -c 0
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- run -i 13
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- stack_get -i 14
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- eval -i 15 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_names -i 16 -d 0
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_get -i 17 -d 0 -c 0
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- run -i 18
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- stack_get -i 19
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- eval -i 20 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_names -i 21 -d 0
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_get -i 22 -d 0 -c 0
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- run -i 23
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- stop -i 24
+[67] [Step Debug] ->
+
+[67] Log closed at 2024-10-18 10:46:00.769094
+
+[67] Log opened at 2024-10-18 10:46:03.433160
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_list -i 1
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_list -i 2
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_list -i 3
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_list -i 4
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1280
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- run -i 8
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- stack_get -i 9
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- eval -i 10 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_names -i 11 -d 0
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_get -i 12 -d 0 -c 0
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- run -i 13
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- stack_get -i 14
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- eval -i 15 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_names -i 16 -d 0
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_get -i 17 -d 0 -c 0
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- run -i 18
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- stack_get -i 19
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- eval -i 20 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_names -i 21 -d 0
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_get -i 22 -d 0 -c 0
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_get -i 23 -d 0 -c 1
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_get -i 24 -d 0 -c 2
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_list -i 25
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_remove -i 26 -d 670005
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 399
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1280
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- run -i 29
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- stack_get -i 30
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- stack_get -i 31
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- eval -i 32 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_names -i 33 -d 0
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- context_get -i 34 -d 0 -c 0
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- run -i 35
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- stop -i 36
+[67] [Step Debug] ->
+
+[67] Log closed at 2024-10-18 10:47:29.217556
+
+[65] Log opened at 2024-10-18 10:47:31.909373
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_list -i 1
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_list -i 2
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_list -i 3
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_list -i 4
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 399
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1280
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- run -i 9
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- stack_get -i 10
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- eval -i 11 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_names -i 12 -d 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_get -i 13 -d 0 -c 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- step_over -i 14
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- stack_get -i 15
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- eval -i 16 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_names -i 17 -d 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_get -i 18 -d 0 -c 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_get -i 19 -d 0 -c 1
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_get -i 20 -d 0 -c 2
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_list -i 21
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_remove -i 22 -d 650002
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_remove -i 23 -d 650003
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 399
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_list -i 25
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_remove -i 26 -d 650005
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 399
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1238
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- step_over -i 29
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- stack_get -i 30
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- eval -i 31 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_names -i 32 -d 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_get -i 33 -d 0 -c 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- run -i 34
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- stack_get -i 35
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- stack_get -i 36
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- eval -i 37 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_names -i 38 -d 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_get -i 39 -d 0 -c 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- step_over -i 40
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- stack_get -i 41
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- eval -i 42 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_names -i 43 -d 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_get -i 44 -d 0 -c 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_get -i 45 -d 0 -c 1
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_get -i 46 -d 0 -c 2
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_list -i 47
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_remove -i 48 -d 650006
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_remove -i 49 -d 650007
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 50 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 399
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_list -i 51
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_remove -i 52 -d 650008
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 53 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 399
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 54 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1280
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- run -i 55
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- stack_get -i 56
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- eval -i 57 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_names -i 58 -d 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_get -i 59 -d 0 -c 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- run -i 60
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- stack_get -i 61
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- eval -i 62 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_names -i 63 -d 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_get -i 64 -d 0 -c 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- run -i 65
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- stack_get -i 66
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- eval -i 67 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_names -i 68 -d 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- context_get -i 69 -d 0 -c 0
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- run -i 70
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- stop -i 71
+[65] [Step Debug] ->
+
+[65] Log closed at 2024-10-18 10:48:42.571508
+
+[78] Log opened at 2024-10-18 10:48:49.839402
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_list -i 1
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_list -i 2
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_list -i 3
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_list -i 4
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 399
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1280
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- run -i 9
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stack_get -i 10
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 11 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_names -i 12 -d 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_get -i 13 -d 0 -c 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- step_over -i 14
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stack_get -i 15
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stack_get -i 16
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 17 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_names -i 18 -d 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_get -i 19 -d 0 -c 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- run -i 20
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stack_get -i 21
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 22 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_names -i 23 -d 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_get -i 24 -d 0 -c 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 25 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 26 -- JHBlc29fZW52aW8=
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- run -i 27
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stack_get -i 28
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 29 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 30 -- JHBlc29fZW52aW8=
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_names -i 31 -d 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_get -i 32 -d 0 -c 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- run -i 33
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stack_get -i 34
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 35 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 36 -- JHBlc29fZW52aW8=
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_names -i 37 -d 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_get -i 38 -d 0 -c 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_get -i 39 -d 0 -c 1
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_get -i 40 -d 0 -c 2
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- step_over -i 41
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stack_get -i 42
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 43 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 44 -- JHBlc29fZW52aW8=
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_names -i 45 -d 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_get -i 46 -d 0 -c 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- property_get -i 47 -d 0 -c 0 -n "$data[0]"
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- step_over -i 48
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stack_get -i 49
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 50 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 51 -- JHBlc29fZW52aW8=
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_names -i 52 -d 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_get -i 53 -d 0 -c 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- run -i 54
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stack_get -i 55
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 56 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 57 -- JHBlc29fZW52aW8=
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_names -i 58 -d 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_get -i 59 -d 0 -c 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- run -i 60
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stop -i 61
+[78] [Step Debug] ->
+
+[78] Log closed at 2024-10-18 10:49:52.876447
+
+[68] Log opened at 2024-10-18 10:49:55.290431
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 1
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 2
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 3
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 4
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 399
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1280
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- run -i 9
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- stack_get -i 10
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 11 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 12 -- JHBlc29fZW52aW8=
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_names -i 13 -d 0
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_get -i 14 -d 0 -c 0
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 15
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_remove -i 16 -d 680002
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_remove -i 17 -d 680003
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1280
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_get -i 19 -d 0 -c 1
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_get -i 20 -d 0 -c 2
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 21
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_remove -i 22 -d 680005
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1289
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 24
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_remove -i 25 -d 680006
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1288
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- property_get -i 27 -d 0 -c 0 -n "$return_data[\"errors\"]"
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 28
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_remove -i 29 -d 680007
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1289
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 31
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_remove -i 32 -d 680008
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 33 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1292
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 34
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_remove -i 35 -d 680009
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 36 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1294
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- run -i 37
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- stop -i 38
+[68] [Step Debug] ->
+
+[68] Log closed at 2024-10-18 11:10:32.133741
+
+[53] Log opened at 2024-10-18 11:10:48.589953
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 1
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 2
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 3
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 4
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1294
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- run -i 8
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- stack_get -i 9
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- eval -i 10 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- eval -i 11 -- JHBlc29fZW52aW8=
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- context_names -i 12 -d 0
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- context_get -i 13 -d 0 -c 0
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- run -i 14
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- stack_get -i 15
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- stack_get -i 16
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- eval -i 17 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- eval -i 18 -- JHBlc29fZW52aW8=
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- context_names -i 19 -d 0
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- context_get -i 20 -d 0 -c 0
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- step_over -i 21
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- stack_get -i 22
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- eval -i 23 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- eval -i 24 -- JHBlc29fZW52aW8=
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- context_names -i 25 -d 0
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- context_get -i 26 -d 0 -c 0
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- run -i 27
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- stack_get -i 28
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- eval -i 29 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- eval -i 30 -- JHBlc29fZW52aW8=
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- context_names -i 31 -d 0
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- context_get -i 32 -d 0 -c 0
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- run -i 33
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- stop -i 34
+[53] [Step Debug] ->
+
+[53] Log closed at 2024-10-18 11:11:01.768430
+
+[66] Log opened at 2024-10-18 11:12:00.050258
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 1
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 2
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 3
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 4
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- run -i 8
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- stack_get -i 9
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- eval -i 10 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- eval -i 11 -- JHBlc29fZW52aW8=
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- context_names -i 12 -d 0
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- context_get -i 13 -d 0 -c 0
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- run -i 14
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- stack_get -i 15
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- eval -i 16 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- eval -i 17 -- JHBlc29fZW52aW8=
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- context_names -i 18 -d 0
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- context_get -i 19 -d 0 -c 0
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- run -i 20
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- stack_get -i 21
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- eval -i 22 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- eval -i 23 -- JHBlc29fZW52aW8=
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- context_names -i 24 -d 0
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- context_get -i 25 -d 0 -c 0
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- step_over -i 26
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- stack_get -i 27
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- stack_get -i 28
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- eval -i 29 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- eval -i 30 -- JHBlc29fZW52aW8=
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- context_names -i 31 -d 0
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- context_get -i 32 -d 0 -c 0
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- step_over -i 33
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- stack_get -i 34
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- eval -i 35 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- eval -i 36 -- JHBlc29fZW52aW8=
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- context_names -i 37 -d 0
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- context_get -i 38 -d 0 -c 0
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- run -i 39
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- stop -i 40
+[66] [Step Debug] ->
+
+[66] Log closed at 2024-10-18 11:12:17.518444
+
+[69] Log opened at 2024-10-18 11:12:38.550876
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- breakpoint_list -i 1
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- breakpoint_list -i 2
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- breakpoint_list -i 3
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- breakpoint_list -i 4
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- run -i 8
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- stack_get -i 9
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 10 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ==
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 11 -- JHBlc29fZW52aW8=
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_names -i 12 -d 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 13 -d 0 -c 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 14 -- JGRhdGFbMF0tPmNvc3Rl
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 15 -- JHBlc29fZW52aW8=
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_names -i 16 -d 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 17 -d 0 -c 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- step_over -i 18
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- stack_get -i 19
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- stack_get -i 20
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 21 -- JGRhdGFbMF0tPmNvc3Rl
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 22 -- JHBlc29fZW52aW8=
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_names -i 23 -d 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 24 -d 0 -c 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 25 -- JGNvc3Rl
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 26 -- JHBlc29fZW52aW8=
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_names -i 27 -d 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 28 -d 0 -c 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- run -i 29
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- stack_get -i 30
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 31 -- JGNvc3Rl
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 32 -- JHBlc29fZW52aW8=
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_names -i 33 -d 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 34 -d 0 -c 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- run -i 35
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- stack_get -i 36
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 37 -- JGNvc3Rl
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 38 -- JHBlc29fZW52aW8=
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_names -i 39 -d 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 40 -d 0 -c 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 41 -d 0 -c 1
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 42 -d 0 -c 2
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- step_over -i 43
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- stack_get -i 44
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 45 -- JGNvc3Rl
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 46 -- JHBlc29fZW52aW8=
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_names -i 47 -d 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 48 -d 0 -c 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- step_over -i 49
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- stack_get -i 50
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 51 -- JGNvc3Rl
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 52 -- JHBlc29fZW52aW8=
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_names -i 53 -d 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 54 -d 0 -c 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 55 -d 0 -c 1
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 56 -d 0 -c 2
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- step_over -i 57
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- stack_get -i 58
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 59 -- JGNvc3Rl
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 60 -- JHBlc29fZW52aW8=
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_names -i 61 -d 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 62 -d 0 -c 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 63 -d 0 -c 1
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 64 -d 0 -c 2
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- step_over -i 65
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- stack_get -i 66
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- stack_get -i 67
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 68 -- JGNvc3Rl
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 69 -- JHBlc29fZW52aW8=
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_names -i 70 -d 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 71 -d 0 -c 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- run -i 72
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- stack_get -i 73
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 74 -- JGNvc3Rl
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 75 -- JHBlc29fZW52aW8=
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_names -i 76 -d 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 77 -d 0 -c 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- run -i 78
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- stack_get -i 79
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 80 -- JGNvc3Rl
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- eval -i 81 -- JHBlc29fZW52aW8=
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_names -i 82 -d 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- context_get -i 83 -d 0 -c 0
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- run -i 84
+[69] [Step Debug] ->
+
+[69] [Step Debug] <- stop -i 85
+[69] [Step Debug] ->
+
+[69] Log closed at 2024-10-18 11:13:55.952133
+
+[76] Log opened at 2024-10-18 11:14:56.003690
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_list -i 1
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_list -i 2
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_list -i 3
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_list -i 4
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- run -i 8
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- stack_get -i 9
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- eval -i 10 -- JGNvc3Rl
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- eval -i 11 -- JHBlc29fZW52aW8=
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_names -i 12 -d 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_get -i 13 -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- run -i 14
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- stack_get -i 15
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- eval -i 16 -- JGNvc3Rl
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- eval -i 17 -- JHBlc29fZW52aW8=
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_names -i 18 -d 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_get -i 19 -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- run -i 20
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- stack_get -i 21
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- eval -i 22 -- JGNvc3Rl
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- eval -i 23 -- JHBlc29fZW52aW8=
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_names -i 24 -d 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- context_get -i 25 -d 0 -c 0
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- run -i 26
+[76] [Step Debug] ->
+
+[76] [Step Debug] <- stop -i 27
+[76] [Step Debug] ->
+
+[76] Log closed at 2024-10-18 11:15:06.805522
+
+[77] Log opened at 2024-10-18 11:15:12.818327
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 1
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 2
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 3
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 4
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- run -i 8
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- stack_get -i 9
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- eval -i 10 -- JGNvc3Rl
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- eval -i 11 -- JHBlc29fZW52aW8=
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- context_names -i 12 -d 0
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- context_get -i 13 -d 0 -c 0
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- run -i 14
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- stack_get -i 15
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- eval -i 16 -- JGNvc3Rl
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- eval -i 17 -- JHBlc29fZW52aW8=
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- context_names -i 18 -d 0
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- context_get -i 19 -d 0 -c 0
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- run -i 20
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- stack_get -i 21
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- eval -i 22 -- JGNvc3Rl
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- eval -i 23 -- JHBlc29fZW52aW8=
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- context_names -i 24 -d 0
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- context_get -i 25 -d 0 -c 0
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- step_over -i 26
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- stack_get -i 27
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- eval -i 28 -- JGNvc3Rl
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- eval -i 29 -- JHBlc29fZW52aW8=
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- context_names -i 30 -d 0
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- context_get -i 31 -d 0 -c 0
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- step_over -i 32
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- stack_get -i 33
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- eval -i 34 -- JGNvc3Rl
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- eval -i 35 -- JHBlc29fZW52aW8=
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- context_names -i 36 -d 0
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- context_get -i 37 -d 0 -c 0
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- step_over -i 38
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- stack_get -i 39
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- eval -i 40 -- JGNvc3Rl
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- eval -i 41 -- JHBlc29fZW52aW8=
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- context_names -i 42 -d 0
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- context_get -i 43 -d 0 -c 0
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- run -i 44
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- stop -i 45
+[77] [Step Debug] ->
+
+[77] Log closed at 2024-10-18 11:15:44.351717
+
+[72] Log opened at 2024-10-18 11:16:06.683615
+[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72'
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_list -i 1
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_list -i 2
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_list -i 3
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_list -i 4
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_set -i 7 -t exception -x *
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- run -i 8
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- stop -i 9
+[72] [Step Debug] ->
+
+[72] [Step Debug] ->
+
+[72] Log closed at 2024-10-18 11:16:12.691260
+
+[67] Log opened at 2024-10-18 11:16:18.999017
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] Log closed at 2024-10-18 11:16:26.363570
+
+[67] Log opened at 2024-10-18 11:16:30.008718
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] Log closed at 2024-10-18 11:16:36.700032
+
+[65] Log opened at 2024-10-18 11:16:59.304270
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] Log closed at 2024-10-18 11:17:05.537353
+
+[78] Log opened at 2024-10-18 11:18:26.109810
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_list -i 1
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_list -i 2
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_list -i 3
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_list -i 4
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- run -i 9
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stack_get -i 10
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 11 -- JGNvc3Rl
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 12 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_names -i 13 -d 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_get -i 14 -d 0 -c 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 15 -- JGNvc3Rl
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 16 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 17 -- JHBlc28=
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_names -i 18 -d 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_get -i 19 -d 0 -c 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- run -i 20
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stack_get -i 21
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 22 -- JGNvc3Rl
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 23 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 24 -- JHBlc28=
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_names -i 25 -d 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_get -i 26 -d 0 -c 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- run -i 27
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stack_get -i 28
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 29 -- JGNvc3Rl
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 30 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- eval -i 31 -- JHBlc28=
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_names -i 32 -d 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- context_get -i 33 -d 0 -c 0
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- run -i 34
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stop -i 35
+[78] [Step Debug] ->
+
+[78] Log closed at 2024-10-18 11:18:54.785793
+
+[68] Log opened at 2024-10-18 11:19:00.739233
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 1
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 2
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 3
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 4
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- run -i 9
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- stack_get -i 10
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 11 -- JGNvc3Rl
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 12 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 13 -- JHBlc28=
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_names -i 14 -d 0
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_get -i 15 -d 0 -c 0
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- run -i 16
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- stack_get -i 17
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 18 -- JGNvc3Rl
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 19 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 20 -- JHBlc28=
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_names -i 21 -d 0
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_get -i 22 -d 0 -c 0
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- run -i 23
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- stack_get -i 24
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 25 -- JGNvc3Rl
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 26 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 27 -- JHBlc28=
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_names -i 28 -d 0
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_get -i 29 -d 0 -c 0
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- run -i 30
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- stop -i 31
+[68] [Step Debug] ->
+
+[68] Log closed at 2024-10-18 11:19:27.736133
+
+[53] Log opened at 2024-10-18 11:19:33.106259
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 1
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 2
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 3
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 4
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- run -i 9
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- stop -i 10
+[53] [Step Debug] ->
+
+[53] Log closed at 2024-10-18 11:19:33.657045
+
+[66] Log opened at 2024-10-18 11:19:33.702152
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 1
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 2
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 3
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 4
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- run -i 9
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- stop -i 10
+[66] [Step Debug] ->
+
+[66] Log closed at 2024-10-18 11:19:33.799690
+
+[66] Log opened at 2024-10-18 11:19:33.919005
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] ->
+
+[77] Log opened at 2024-10-18 11:19:33.921167
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 1
+[66] [Step Debug] <- breakpoint_list -i 1
+[66] [Step Debug] ->
+
+[77] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 2
+[77] [Step Debug] <- breakpoint_list -i 2
+[66] [Step Debug] ->
+
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 3
+[77] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 3
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 4
+[66] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 4
+[77] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[77] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[66] [Step Debug] ->
+
+[77] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[66] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[77] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 9
+[66] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[66] [Step Debug] <- breakpoint_list -i 10
+[66] [Step Debug] ->
+
+[77] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 11
+[66] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[66] [Step Debug] <- breakpoint_list -i 12
+[66] [Step Debug] ->
+
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 9
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 10
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 11
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 12
+[77] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_remove -i 13 -d 660008
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_remove -i 14 -d 660009
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_remove -i 15 -d 660010
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_remove -i 16 -d 660011
+[66] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_remove -i 13 -d 770004
+[77] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[66] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_remove -i 14 -d 770005
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_remove -i 15 -d 770006
+[66] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[77] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_remove -i 16 -d 770007
+[66] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[77] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 20 -t exception -x *
+[66] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 20 -t exception -x *
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- run -i 21
+[66] [Step Debug] <- run -i 21
+[72] Log opened at 2024-10-18 11:19:33.983462
+[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72'
+[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[72] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_list -i 1
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_list -i 2
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_list -i 3
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_list -i 4
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[72] [Step Debug] ->
+
+[72] [Step Debug] <- breakpoint_set -i 8 -t exception -x *
+[72] [Step Debug] ->
+
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 22
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 23
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 24
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 25
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- stop -i 26
+[77] [Step Debug] ->
+
+[77] Log closed at 2024-10-18 11:19:34.212822
+
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 22
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 23
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 24
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 25
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- stop -i 26
+[66] [Step Debug] ->
+
+[66] Log closed at 2024-10-18 11:19:34.647018
+
+[72] [Step Debug] <- stop -i 9
+[72] [Step Debug] ->
+
+[67] Log opened at 2024-10-18 11:19:43.926868
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] Log closed at 2024-10-18 11:19:44.954342
+
+[65] Log opened at 2024-10-18 11:19:54.037240
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] Log closed at 2024-10-18 11:19:55.563797
+
+[65] Log opened at 2024-10-18 11:19:55.607699
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] Log closed at 2024-10-18 11:19:56.238024
+
+[78] Log opened at 2024-10-18 11:19:56.303862
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] Log opened at 2024-10-18 11:19:56.320708
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] Log opened at 2024-10-18 11:19:56.359334
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] Log opened at 2024-10-18 11:19:56.369336
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[68] [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).
+[53] [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).
+[69] [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).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [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).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [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).
+[68] Log closed at 2024-10-18 11:19:57.121049
+
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] Log closed at 2024-10-18 11:19:57.734803
+
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] Log closed at 2024-10-18 11:19:58.152110
+
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] Log closed at 2024-10-18 11:19:58.564221
+
+[77] Log opened at 2024-10-18 11:20:16.402894
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [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).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [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).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [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).
+[77] Log closed at 2024-10-18 11:20:17.444024
+
+[67] Log opened at 2024-10-18 11:21:18.520626
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] Log closed at 2024-10-18 11:21:26.298025
+
+[67] Log opened at 2024-10-18 11:21:30.093557
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] Log closed at 2024-10-18 11:21:36.826431
+
+[65] Log opened at 2024-10-18 11:33:09.128570
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] Log closed at 2024-10-18 11:33:15.977984
+
+[76] Log opened at 2024-10-18 11:33:33.924887
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [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).
+[68] Log opened at 2024-10-18 11:33:40.575091
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [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).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [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).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [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).
+[76] Log closed at 2024-10-18 11:33:41.230169
+
+[78] Log opened at 2024-10-18 11:33:42.892264
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[53] Log opened at 2024-10-18 11:33:44.126864
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [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).
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [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).
+[68] Log closed at 2024-10-18 11:33:47.582177
+
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] Log closed at 2024-10-18 11:33:54.497296
+
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [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).
+[53] Log closed at 2024-10-18 11:34:01.116945
+
+[67] Log opened at 2024-10-18 11:35:31.347463
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] Log closed at 2024-10-18 11:35:38.199172
+
+[79] Log opened at 2024-10-18 11:36:41.877572
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] Log closed at 2024-10-18 11:36:42.911597
+
+[65] Log opened at 2024-10-18 11:36:59.518028
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] Log closed at 2024-10-18 11:37:00.535064
+
+[68] Log opened at 2024-10-18 11:37:44.042645
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 1
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 2
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 3
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 4
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 5
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- run -i 11
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- stack_get -i 12
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 13 -- JGNvc3Rl
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 14 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 15 -- JHBlc28=
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_names -i 16 -d 0
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_get -i 17 -d 0 -c 0
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- step_over -i 18
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- stack_get -i 19
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 20 -- JGNvc3Rl
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 21 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 22 -- JHBlc28=
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_names -i 23 -d 0
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_get -i 24 -d 0 -c 0
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- step_over -i 25
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- stack_get -i 26
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 27 -- JGNvc3Rl
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 28 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- eval -i 29 -- JHBlc28=
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_names -i 30 -d 0
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- context_get -i 31 -d 0 -c 0
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- run -i 32
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- stop -i 33
+[68] [Step Debug] ->
+
+[68] Log closed at 2024-10-18 11:38:00.544746
+
+[78] Log opened at 2024-10-18 11:39:34.624889
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_list -i 1
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_list -i 2
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_list -i 3
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_list -i 4
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_list -i 5
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- run -i 11
+[78] [Step Debug] ->
+
+[78] [Step Debug] <- stop -i 12
+[78] [Step Debug] ->
+
+[78] Log closed at 2024-10-18 11:39:36.354640
+
+[77] Log opened at 2024-10-18 11:39:36.463291
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[77] [Step Debug] ->
+
+[66] Log opened at 2024-10-18 11:39:36.464785
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 1
+[66] [Step Debug] <- breakpoint_list -i 1
+[66] [Step Debug] ->
+
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 2
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 3
+[66] [Step Debug] <- breakpoint_list -i 2
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 4
+[77] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 5
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_list -i 6
+[77] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 3
+[77] [Step Debug] <- breakpoint_list -i 7
+[66] [Step Debug] ->
+
+[77] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 4
+[77] [Step Debug] <- breakpoint_list -i 8
+[66] [Step Debug] ->
+
+[77] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 5
+[77] [Step Debug] <- breakpoint_list -i 9
+[66] [Step Debug] ->
+
+[77] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 6
+[77] [Step Debug] <- breakpoint_list -i 10
+[66] [Step Debug] ->
+
+[77] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 7
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 8
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 9
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 10
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[77] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[77] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 15 -t exception -x *
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142
+[66] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 15 -t exception -x *
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[77] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 20 -t exception -x *
+[66] [Step Debug] ->
+
+[77] [Step Debug] <- breakpoint_set -i 20 -t exception -x *
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- run -i 21
+[66] [Step Debug] <- run -i 21
+[77] [Step Debug] ->
+
+[77] [Step Debug] <- stop -i 22
+[77] [Step Debug] ->
+
+[77] Log closed at 2024-10-18 11:39:36.551897
+
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- stop -i 22
+[66] [Step Debug] ->
+
+[66] Log closed at 2024-10-18 11:39:36.927900
+
+[66] Log opened at 2024-10-18 11:39:36.950611
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 1
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 2
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 3
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 4
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 5
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- run -i 11
+[53] Log opened at 2024-10-18 11:39:37.052593
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[53] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 1
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 2
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 3
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 4
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 5
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[53] [Step Debug] ->
+
+[68] Log opened at 2024-10-18 11:39:37.068998
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[68] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 1
+[68] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 11
+[53] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 2
+[68] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 12
+[68] [Step Debug] <- breakpoint_list -i 3
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 4
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_list -i 5
+[68] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 13
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 14
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_list -i 15
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_remove -i 16 -d 530008
+[53] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[68] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_remove -i 17 -d 530009
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_remove -i 18 -d 530010
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_remove -i 19 -d 530011
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_remove -i 20 -d 530012
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 25 -t exception -x *
+[53] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 12
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 13
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 14
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 15
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 16
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 17
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 18
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 19
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 20
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_list -i 21
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- stop -i 22
+[66] [Step Debug] ->
+
+[66] Log closed at 2024-10-18 11:39:37.638582
+
+[53] [Step Debug] <- stop -i 26
+[53] [Step Debug] ->
+
+[68] [Step Debug] <- stop -i 11
+[68] [Step Debug] ->
+
+[67] Log opened at 2024-10-18 11:39:49.837611
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] Log opened at 2024-10-18 11:39:49.838024
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[79] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] Log closed at 2024-10-18 11:39:50.694487
+
+[79] [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).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[79] [Step Debug] ->
+
+[79] [Step Debug] <- breakpoint_list -i 1
+[79] [Step Debug] ->
+
+[79] [Step Debug] <- breakpoint_list -i 2
+[79] [Step Debug] ->
+
+[79] [Step Debug] <- breakpoint_list -i 3
+[79] [Step Debug] ->
+
+[79] [Step Debug] <- breakpoint_list -i 4
+[79] [Step Debug] ->
+
+[79] [Step Debug] <- breakpoint_list -i 5
+[79] [Step Debug] ->
+
+[79] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142
+[79] [Step Debug] ->
+
+[79] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124
+[79] [Step Debug] ->
+
+[79] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414
+[79] [Step Debug] ->
+
+[79] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295
+[79] [Step Debug] ->
+
+[79] [Step Debug] <- breakpoint_set -i 10 -t exception -x *
+[79] [Step Debug] ->
+
+[79] [Step Debug] ->
+
+[79] Log closed at 2024-10-18 11:39:50.892137
+
+[67] Log opened at 2024-10-18 11:39:50.927996
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[67] [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).
+[67] Log closed at 2024-10-18 11:39:52.007439
+
+[69] Log opened at 2024-10-18 11:39:55.144752
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] Log closed at 2024-10-18 11:39:57.341144
+
+[69] Log opened at 2024-10-18 11:39:57.482315
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] Log opened at 2024-10-18 11:39:57.525035
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[69] [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).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] Log closed at 2024-10-18 11:39:58.111428
+
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] Log closed at 2024-10-18 11:39:58.552232
+
+[65] Log opened at 2024-10-18 11:39:58.582792
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] Log opened at 2024-10-18 11:39:58.653849
+[77] Log opened at 2024-10-18 11:39:58.653844
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[77] [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).
+[76] [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).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [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).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [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).
+[77] Log closed at 2024-10-18 11:39:59.491423
+
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[65] [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).
+[65] Log closed at 2024-10-18 11:40:00.107541
+
+[76] [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).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [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).
+[76] Log closed at 2024-10-18 11:40:00.444679
+
+[78] Log opened at 2024-10-18 11:40:00.467591
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] Log closed at 2024-10-18 11:40:01.560870
+
+[80] Log opened at 2024-10-18 11:40:45.291679
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] Log closed at 2024-10-18 11:40:47.481169
+
+[81] Log opened at 2024-10-18 11:40:47.623808
+[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81'
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] Log opened at 2024-10-18 11:40:47.662199
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[81] [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).
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[81] [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).
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[81] [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).
+[81] Log closed at 2024-10-18 11:40:48.253978
+
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] Log closed at 2024-10-18 11:40:48.663067
+
+[81] Log opened at 2024-10-18 11:40:48.739522
+[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81'
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] Log opened at 2024-10-18 11:40:48.762451
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[66] Log opened at 2024-10-18 11:40:48.762451
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[81] [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).
+[69] [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).
+[66] [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).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] Log closed at 2024-10-18 11:40:49.592220
+
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[81] [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).
+[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[81] [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).
+[81] Log closed at 2024-10-18 11:40:50.182328
+
+[66] [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).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] Log closed at 2024-10-18 11:40:50.514117
+
+[82] Log opened at 2024-10-18 11:40:50.539446
+[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82'
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[82] [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).
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[82] [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).
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[82] [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).
+[82] Log closed at 2024-10-18 11:40:51.619754
+
+[78] Log opened at 2024-10-18 11:41:32.382403
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] Log closed at 2024-10-18 11:41:34.562727
+
+[78] Log opened at 2024-10-18 11:41:34.702527
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] Log opened at 2024-10-18 11:41:34.739713
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[78] [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).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] Log closed at 2024-10-18 11:41:35.330857
+
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] Log closed at 2024-10-18 11:41:35.742968
+
+[80] Log opened at 2024-10-18 11:41:35.848572
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] Log opened at 2024-10-18 11:41:35.868385
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] Log opened at 2024-10-18 11:41:35.871870
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[69] [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).
+[77] [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).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] Log closed at 2024-10-18 11:41:36.692170
+
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] Log closed at 2024-10-18 11:41:37.279288
+
+[77] [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).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [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).
+[77] Log closed at 2024-10-18 11:41:37.609687
+
+[79] Log opened at 2024-10-18 11:41:37.636279
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] Log closed at 2024-10-18 11:41:38.717621
+
+[66] Log opened at 2024-10-18 11:41:59.202602
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] Log closed at 2024-10-18 11:42:01.367002
+
+[66] Log opened at 2024-10-18 11:42:01.471005
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[82] Log opened at 2024-10-18 11:42:01.473845
+[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82'
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[82] [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).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] Log closed at 2024-10-18 11:42:02.101736
+
+[82] [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).
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[82] [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).
+[82] Log closed at 2024-10-18 11:42:02.473271
+
+[82] Log opened at 2024-10-18 11:42:02.512778
+[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82'
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] Log opened at 2024-10-18 11:42:02.598922
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] Log opened at 2024-10-18 11:42:02.609987
+[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84'
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[82] [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).
+[76] [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).
+[84] [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).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [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).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [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).
+[76] Log closed at 2024-10-18 11:42:03.429742
+
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[82] [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).
+[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[82] [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).
+[82] Log closed at 2024-10-18 11:42:04.020552
+
+[84] [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).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [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).
+[84] Log closed at 2024-10-18 11:42:04.353419
+
+[76] Log opened at 2024-10-18 11:42:04.376797
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [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).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [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).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [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).
+[76] Log closed at 2024-10-18 11:42:05.463093
+
+[80] Log opened at 2024-10-18 11:46:35.343417
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] Log closed at 2024-10-18 11:46:37.510431
+
+[80] Log opened at 2024-10-18 11:46:37.664674
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[83] Log opened at 2024-10-18 11:46:37.710663
+[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83'
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[83] [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).
+[80] [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).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] Log closed at 2024-10-18 11:46:38.293460
+
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[83] [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).
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[83] [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).
+[83] Log closed at 2024-10-18 11:46:38.746925
+
+[77] Log opened at 2024-10-18 11:46:38.774793
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] Log opened at 2024-10-18 11:46:38.849479
+[66] Log opened at 2024-10-18 11:46:38.849478
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [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).
+[66] [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).
+[78] [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).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[66] [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).
+[66] Log closed at 2024-10-18 11:46:39.676427
+
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [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).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [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).
+[77] Log closed at 2024-10-18 11:46:40.290362
+
+[78] [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).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] Log closed at 2024-10-18 11:46:40.621247
+
+[77] Log opened at 2024-10-18 11:46:44.525265
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [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).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [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).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [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).
+[77] Log closed at 2024-10-18 11:46:45.628167
+
+[76] Log opened at 2024-10-18 11:47:27.456516
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [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).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [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).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [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).
+[76] Log closed at 2024-10-18 11:47:29.639893
+
+[76] Log opened at 2024-10-18 11:47:29.787564
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] Log opened at 2024-10-18 11:47:29.838007
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [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).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [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).
+[76] [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).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [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).
+[76] Log closed at 2024-10-18 11:47:30.416949
+
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [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).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [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).
+[85] Log closed at 2024-10-18 11:47:30.859620
+
+[69] Log opened at 2024-10-18 11:47:30.887185
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] Log opened at 2024-10-18 11:47:30.958377
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[83] Log opened at 2024-10-18 11:47:30.958653
+[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83'
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[79] [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).
+[83] [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).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] Log closed at 2024-10-18 11:47:31.795095
+
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] Log closed at 2024-10-18 11:47:32.387860
+
+[83] [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).
+[83] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[83] [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).
+[83] Log closed at 2024-10-18 11:47:32.744422
+
+[80] Log opened at 2024-10-18 11:47:32.770923
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] Log closed at 2024-10-18 11:47:33.867222
+
+[78] Log opened at 2024-10-18 11:47:51.662518
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] Log closed at 2024-10-18 11:47:59.031554
+
+[78] Log opened at 2024-10-18 11:48:01.600542
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] Log closed at 2024-10-18 11:48:02.614741
+
+[84] Log opened at 2024-10-18 11:49:59.385030
+[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84'
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [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).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [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).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [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).
+[84] Log closed at 2024-10-18 11:50:01.542703
+
+[84] Log opened at 2024-10-18 11:50:01.714512
+[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84'
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] Log opened at 2024-10-18 11:50:01.755353
+[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69'
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [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).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[84] [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).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [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).
+[84] Log closed at 2024-10-18 11:50:02.343098
+
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[69] [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).
+[69] Log closed at 2024-10-18 11:50:02.763873
+
+[86] Log opened at 2024-10-18 11:50:02.788986
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] Log opened at 2024-10-18 11:50:02.875568
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[76] Log opened at 2024-10-18 11:50:02.875568
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[76] [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).
+[79] [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).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] Log closed at 2024-10-18 11:50:03.699016
+
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] Log closed at 2024-10-18 11:50:04.357334
+
+[76] [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).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [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).
+[76] Log closed at 2024-10-18 11:50:04.694696
+
+[86] Log opened at 2024-10-18 11:50:04.720438
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] Log closed at 2024-10-18 11:50:05.820319
+
+[80] Log opened at 2024-10-18 11:50:26.868874
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] Log closed at 2024-10-18 11:50:28.998871
+
+[80] Log opened at 2024-10-18 11:50:29.145068
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] Log opened at 2024-10-18 11:50:29.176386
+[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84'
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [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).
+[80] [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).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] Log closed at 2024-10-18 11:50:29.773376
+
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [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).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [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).
+[84] Log closed at 2024-10-18 11:50:30.189424
+
+[85] Log opened at 2024-10-18 11:50:30.264305
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] Log opened at 2024-10-18 11:50:30.280189
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] Log opened at 2024-10-18 11:50:30.280371
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [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).
+[77] [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).
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] Log closed at 2024-10-18 11:50:31.111084
+
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [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).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [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).
+[85] Log closed at 2024-10-18 11:50:31.724110
+
+[77] [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).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [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).
+[77] Log closed at 2024-10-18 11:50:32.057250
+
+[78] Log opened at 2024-10-18 11:50:32.080481
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] Log closed at 2024-10-18 11:50:33.233483
+
+[79] Log opened at 2024-10-18 11:50:51.645312
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[76] Log opened at 2024-10-18 11:50:53.976401
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [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).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] Log closed at 2024-10-18 11:50:59.527669
+
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [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).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [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).
+[76] Log closed at 2024-10-18 11:51:00.082729
+
+[86] Log opened at 2024-10-18 11:51:40.831796
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[88] Log opened at 2024-10-18 11:51:42.087312
+[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88'
+[88] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[88] [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).
+[80] Log opened at 2024-10-18 11:51:43.060967
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[84] Log opened at 2024-10-18 11:51:45.363738
+[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84'
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] Log closed at 2024-10-18 11:51:48.741608
+
+[88] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[88] [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).
+[88] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[88] [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).
+[88] Log closed at 2024-10-18 11:51:56.457719
+
+[87] Log opened at 2024-10-18 11:51:58.129287
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] Log closed at 2024-10-18 11:52:02.923946
+
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [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).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [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).
+[84] Log closed at 2024-10-18 11:52:10.947760
+
+[85] Log opened at 2024-10-18 11:52:13.761758
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] Log closed at 2024-10-18 11:52:17.667124
+
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [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).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [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).
+[85] Log closed at 2024-10-18 11:52:19.205818
+
+[85] Log opened at 2024-10-18 11:52:19.325564
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] Log opened at 2024-10-18 11:52:19.326515
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [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).
+[77] [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).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [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).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [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).
+[77] Log closed at 2024-10-18 11:52:19.957157
+
+[85] [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).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [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).
+[85] Log closed at 2024-10-18 11:52:20.333952
+
+[77] Log opened at 2024-10-18 11:52:20.436338
+[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77'
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] Log opened at 2024-10-18 11:52:20.439108
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] Log opened at 2024-10-18 11:52:20.439107
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [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).
+[78] [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).
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] Log closed at 2024-10-18 11:52:21.274131
+
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [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).
+[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[77] [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).
+[77] Log closed at 2024-10-18 11:52:21.894011
+
+[78] [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).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] Log closed at 2024-10-18 11:52:22.232136
+
+[87] Log opened at 2024-10-18 11:52:22.259037
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] Log closed at 2024-10-18 11:52:23.336657
+
+[86] Log opened at 2024-10-18 11:53:39.842472
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] Log closed at 2024-10-18 11:53:42.036461
+
+[86] Log opened at 2024-10-18 11:53:42.211577
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] Log opened at 2024-10-18 11:53:42.253311
+[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84'
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [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).
+[86] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] Log closed at 2024-10-18 11:53:42.840110
+
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [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).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [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).
+[84] Log closed at 2024-10-18 11:53:43.269328
+
+[85] Log opened at 2024-10-18 11:53:43.464133
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[88] Log opened at 2024-10-18 11:53:43.473359
+[79] Log opened at 2024-10-18 11:53:43.473359
+[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88'
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[88] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [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).
+[79] [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).
+[88] [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).
+[88] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[88] [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).
+[88] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[88] [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).
+[88] Log closed at 2024-10-18 11:53:44.306159
+
+[79] [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).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] Log closed at 2024-10-18 11:53:44.633493
+
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [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).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [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).
+[85] Log closed at 2024-10-18 11:53:45.271173
+
+[87] Log opened at 2024-10-18 11:54:52.800361
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] Log closed at 2024-10-18 11:54:54.945702
+
+[87] Log opened at 2024-10-18 11:54:55.085950
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] Log opened at 2024-10-18 11:54:55.128690
+[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84'
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [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).
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] Log closed at 2024-10-18 11:54:55.714786
+
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [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).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [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).
+[84] Log closed at 2024-10-18 11:54:56.136954
+
+[80] Log opened at 2024-10-18 11:54:56.170495
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] Log opened at 2024-10-18 11:54:56.253397
+[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84'
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[89] Log opened at 2024-10-18 11:54:56.253619
+[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89'
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[84] [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).
+[89] [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).
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[89] [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).
+[89] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[89] [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).
+[89] Log closed at 2024-10-18 11:54:57.087202
+
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] Log closed at 2024-10-18 11:54:57.710797
+
+[84] [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).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [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).
+[84] Log closed at 2024-10-18 11:54:58.076503
+
+[85] Log opened at 2024-10-18 11:57:41.883729
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [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).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [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).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [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).
+[85] Log closed at 2024-10-18 11:57:44.067041
+
+[85] Log opened at 2024-10-18 11:57:44.260601
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] Log opened at 2024-10-18 11:57:44.295353
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [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).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[85] [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).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [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).
+[85] Log closed at 2024-10-18 11:57:44.889314
+
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] Log closed at 2024-10-18 11:57:45.296208
+
+[76] Log opened at 2024-10-18 11:57:45.328479
+[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76'
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] Log opened at 2024-10-18 11:57:45.419913
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[90] Log opened at 2024-10-18 11:57:45.420142
+[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90'
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [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).
+[87] [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).
+[90] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] Log closed at 2024-10-18 11:57:46.251175
+
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [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).
+[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[76] [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).
+[76] Log closed at 2024-10-18 11:57:46.838239
+
+[90] [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).
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[90] [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).
+[90] Log closed at 2024-10-18 11:57:47.178620
+
+[78] Log opened at 2024-10-18 11:57:47.210663
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] Log closed at 2024-10-18 11:57:48.282707
+
+[84] Log opened at 2024-10-18 11:58:12.650487
+[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84'
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [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).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [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).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [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).
+[84] Log closed at 2024-10-18 11:58:14.790393
+
+[84] Log opened at 2024-10-18 11:58:14.914445
+[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84'
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] Log opened at 2024-10-18 11:58:14.961127
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [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).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[84] [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).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [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).
+[84] Log closed at 2024-10-18 11:58:15.543369
+
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] Log closed at 2024-10-18 11:58:15.964629
+
+[91] Log opened at 2024-10-18 11:58:15.998121
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] Log opened at 2024-10-18 11:58:16.075503
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] Log opened at 2024-10-18 11:58:16.078866
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[87] [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).
+[85] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] Log closed at 2024-10-18 11:58:16.902323
+
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[91] Log closed at 2024-10-18 11:58:17.509179
+
+[85] [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).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [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).
+[85] Log closed at 2024-10-18 11:58:17.847130
+
+[79] Log opened at 2024-10-18 11:58:17.878777
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] Log closed at 2024-10-18 11:58:18.973939
+
+[78] Log opened at 2024-10-18 11:58:40.408317
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] Log closed at 2024-10-18 11:58:42.559993
+
+[78] Log opened at 2024-10-18 11:58:42.705915
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] Log opened at 2024-10-18 11:58:42.747143
+[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84'
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [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).
+[78] [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).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] Log closed at 2024-10-18 11:58:43.335024
+
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [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).
+[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[84] [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).
+[84] Log closed at 2024-10-18 11:58:43.754738
+
+[86] Log opened at 2024-10-18 11:58:43.781660
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] Log opened at 2024-10-18 11:58:43.863455
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] Log opened at 2024-10-18 11:58:43.863831
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[87] [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).
+[92] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] Log closed at 2024-10-18 11:58:44.687789
+
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] Log closed at 2024-10-18 11:58:45.275573
+
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [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).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [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).
+[92] Log closed at 2024-10-18 11:58:45.698726
+
+[80] Log opened at 2024-10-18 11:58:45.731208
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] Log closed at 2024-10-18 11:58:46.833021
+
+[91] Log opened at 2024-10-18 11:58:50.306260
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[91] Log closed at 2024-10-18 11:58:52.424471
+
+[91] Log opened at 2024-10-18 11:58:52.551625
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] Log opened at 2024-10-18 11:58:52.599572
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[91] [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).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[91] Log closed at 2024-10-18 11:58:53.180080
+
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] Log closed at 2024-10-18 11:58:53.680952
+
+[93] Log opened at 2024-10-18 11:58:53.707193
+[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93'
+[93] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] Log opened at 2024-10-18 11:58:53.784800
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[90] Log opened at 2024-10-18 11:58:53.791247
+[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90'
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[93] [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).
+[85] [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).
+[90] [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).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [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).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [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).
+[85] Log closed at 2024-10-18 11:58:54.611157
+
+[93] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[93] [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).
+[93] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[93] [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).
+[93] Log closed at 2024-10-18 11:58:55.223484
+
+[90] [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).
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[90] [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).
+[90] Log closed at 2024-10-18 11:58:55.562550
+
+[79] Log opened at 2024-10-18 11:58:55.591101
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] Log closed at 2024-10-18 11:58:56.716293
+
+[86] Log opened at 2024-10-18 11:59:15.360991
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] Log closed at 2024-10-18 11:59:17.515575
+
+[86] Log opened at 2024-10-18 11:59:17.641350
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] Log opened at 2024-10-18 11:59:17.676927
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[86] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] Log closed at 2024-10-18 11:59:18.269953
+
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] Log closed at 2024-10-18 11:59:18.679191
+
+[78] Log opened at 2024-10-18 11:59:18.782733
+[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78'
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] Log opened at 2024-10-18 11:59:18.794568
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] Log opened at 2024-10-18 11:59:18.794998
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[85] [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).
+[91] [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).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [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).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [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).
+[85] Log closed at 2024-10-18 11:59:19.627448
+
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[78] [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).
+[78] Log closed at 2024-10-18 11:59:20.242741
+
+[91] [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).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[91] Log closed at 2024-10-18 11:59:20.581067
+
+[80] Log opened at 2024-10-18 11:59:20.606930
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] Log closed at 2024-10-18 11:59:21.688838
+
+[79] Log opened at 2024-10-18 11:59:29.377784
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] Log closed at 2024-10-18 11:59:31.551365
+
+[79] Log opened at 2024-10-18 11:59:31.660873
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] Log opened at 2024-10-18 11:59:31.705019
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[79] [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).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] Log closed at 2024-10-18 11:59:32.290339
+
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] Log closed at 2024-10-18 11:59:32.735244
+
+[85] Log opened at 2024-10-18 11:59:32.759390
+[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85'
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] Log opened at 2024-10-18 11:59:32.837564
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] Log opened at 2024-10-18 11:59:32.837821
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [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).
+[92] [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).
+[94] [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).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [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).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [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).
+[92] Log closed at 2024-10-18 11:59:33.667711
+
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [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).
+[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[85] [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).
+[85] Log closed at 2024-10-18 11:59:34.270934
+
+[94] [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).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [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).
+[94] Log closed at 2024-10-18 11:59:34.609577
+
+[86] Log opened at 2024-10-18 11:59:34.639063
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] Log closed at 2024-10-18 11:59:35.741066
+
+[80] Log opened at 2024-10-18 12:00:01.051153
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] Log closed at 2024-10-18 12:00:03.206642
+
+[80] Log opened at 2024-10-18 12:00:03.352082
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] Log opened at 2024-10-18 12:00:03.381172
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [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).
+[80] [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).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] Log closed at 2024-10-18 12:00:03.981647
+
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [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).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [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).
+[92] Log closed at 2024-10-18 12:00:04.410410
+
+[79] Log opened at 2024-10-18 12:00:04.435121
+[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79'
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[90] Log opened at 2024-10-18 12:00:04.516976
+[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90'
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] Log opened at 2024-10-18 12:00:04.517188
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[90] [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).
+[95] [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).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [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).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [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).
+[95] Log closed at 2024-10-18 12:00:05.347025
+
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[79] [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).
+[79] Log closed at 2024-10-18 12:00:05.956290
+
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[90] [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).
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[90] [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).
+[90] Log closed at 2024-10-18 12:00:06.395865
+
+[87] Log opened at 2024-10-18 12:00:06.426666
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] Log closed at 2024-10-18 12:00:07.559993
+
+[86] Log opened at 2024-10-18 12:01:08.258525
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] Log closed at 2024-10-18 12:01:10.379933
+
+[86] Log opened at 2024-10-18 12:01:10.543779
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] Log opened at 2024-10-18 12:01:10.579084
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[86] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] Log closed at 2024-10-18 12:01:11.171840
+
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[91] Log closed at 2024-10-18 12:01:11.581478
+
+[80] Log opened at 2024-10-18 12:01:11.606442
+[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80'
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] Log opened at 2024-10-18 12:01:11.682306
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[96] Log opened at 2024-10-18 12:01:11.683118
+[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96'
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[95] [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).
+[96] [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).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [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).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [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).
+[95] Log closed at 2024-10-18 12:01:12.508014
+
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[80] [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).
+[80] Log closed at 2024-10-18 12:01:13.097316
+
+[96] [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).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[96] [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).
+[96] Log closed at 2024-10-18 12:01:13.436437
+
+[91] Log opened at 2024-10-18 12:01:13.463824
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[91] Log closed at 2024-10-18 12:01:14.540646
+
+[87] Log opened at 2024-10-18 12:02:55.734318
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] Log closed at 2024-10-18 12:02:57.902921
+
+[87] Log opened at 2024-10-18 12:02:58.057728
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] Log opened at 2024-10-18 12:02:58.099708
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] Log closed at 2024-10-18 12:02:58.686877
+
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] Log closed at 2024-10-18 12:02:59.119699
+
+[97] Log opened at 2024-10-18 12:02:59.146766
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] Log opened at 2024-10-18 12:02:59.241873
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[86] Log opened at 2024-10-18 12:02:59.241873
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [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).
+[86] [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).
+[94] [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).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [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).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [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).
+[94] Log closed at 2024-10-18 12:03:00.068834
+
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [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).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [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).
+[97] Log closed at 2024-10-18 12:03:00.675631
+
+[86] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] Log closed at 2024-10-18 12:03:01.014618
+
+[92] Log opened at 2024-10-18 12:03:01.047788
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [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).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [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).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [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).
+[92] Log closed at 2024-10-18 12:03:02.127625
+
+[91] Log opened at 2024-10-18 12:03:40.504790
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[91] Log closed at 2024-10-18 12:03:42.671141
+
+[91] Log opened at 2024-10-18 12:03:42.821081
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] Log opened at 2024-10-18 12:03:42.860119
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[91] [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).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[91] Log closed at 2024-10-18 12:03:43.451860
+
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] Log closed at 2024-10-18 12:03:43.867632
+
+[94] Log opened at 2024-10-18 12:03:43.894781
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] Log opened at 2024-10-18 12:03:43.975660
+[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98'
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] Log opened at 2024-10-18 12:03:43.978130
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [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).
+[98] [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).
+[95] [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).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [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).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [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).
+[98] Log closed at 2024-10-18 12:03:44.805548
+
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [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).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [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).
+[94] Log closed at 2024-10-18 12:03:45.395630
+
+[95] [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).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [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).
+[95] Log closed at 2024-10-18 12:03:45.733866
+
+[90] Log opened at 2024-10-18 12:03:45.767060
+[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90'
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[90] [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).
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[90] [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).
+[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[90] [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).
+[90] Log closed at 2024-10-18 12:03:46.864799
+
+[97] Log opened at 2024-10-18 12:03:48.830766
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [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).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [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).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [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).
+[97] Log closed at 2024-10-18 12:03:50.943204
+
+[97] Log opened at 2024-10-18 12:03:51.097724
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] Log opened at 2024-10-18 12:03:51.155988
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [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).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [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).
+[97] [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).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [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).
+[97] Log closed at 2024-10-18 12:03:51.726421
+
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [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).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [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).
+[92] Log closed at 2024-10-18 12:03:52.161907
+
+[91] Log opened at 2024-10-18 12:03:52.242267
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[96] Log opened at 2024-10-18 12:03:52.264343
+[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96'
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[99] Log opened at 2024-10-18 12:03:52.268070
+[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99'
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[96] [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).
+[99] [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).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[96] [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).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[96] [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).
+[96] Log closed at 2024-10-18 12:03:53.091812
+
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[91] Log closed at 2024-10-18 12:03:53.680586
+
+[99] [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).
+[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[99] [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).
+[99] Log closed at 2024-10-18 12:03:54.019593
+
+[86] Log opened at 2024-10-18 12:03:54.052147
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] Log closed at 2024-10-18 12:03:55.128458
+
+[98] Log opened at 2024-10-18 12:04:08.001077
+[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98'
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [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).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [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).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [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).
+[98] Log closed at 2024-10-18 12:04:15.339748
+
+[95] Log opened at 2024-10-18 12:04:56.159764
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [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).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [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).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [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).
+[95] Log closed at 2024-10-18 12:04:58.281412
+
+[95] Log opened at 2024-10-18 12:04:58.426905
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[96] Log opened at 2024-10-18 12:04:58.463128
+[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96'
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [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).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[96] [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).
+[95] [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).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [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).
+[95] Log closed at 2024-10-18 12:04:59.057136
+
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[96] [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).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[96] [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).
+[96] Log closed at 2024-10-18 12:04:59.482896
+
+[97] Log opened at 2024-10-18 12:04:59.510612
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] Log opened at 2024-10-18 12:04:59.598536
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] Log opened at 2024-10-18 12:04:59.602930
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [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).
+[94] [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).
+[91] [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).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [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).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [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).
+[94] Log closed at 2024-10-18 12:05:00.429807
+
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [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).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [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).
+[97] Log closed at 2024-10-18 12:05:01.053114
+
+[91] [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).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[91] Log closed at 2024-10-18 12:05:01.392068
+
+[92] Log opened at 2024-10-18 12:05:01.420798
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [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).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [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).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [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).
+[92] Log closed at 2024-10-18 12:05:02.504767
+
+[98] Log opened at 2024-10-18 12:07:54.887662
+[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98'
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [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).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [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).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [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).
+[98] Log closed at 2024-10-18 12:07:57.055475
+
+[98] Log opened at 2024-10-18 12:07:57.203271
+[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98'
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[96] Log opened at 2024-10-18 12:07:57.243404
+[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96'
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [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).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[96] [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).
+[98] [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).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [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).
+[98] Log closed at 2024-10-18 12:07:57.831726
+
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[96] [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).
+[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[96] [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).
+[96] Log closed at 2024-10-18 12:07:58.244350
+
+[95] Log opened at 2024-10-18 12:07:58.270642
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] Log opened at 2024-10-18 12:07:58.348099
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[100] Log opened at 2024-10-18 12:07:58.348771
+[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100'
+[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [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).
+[94] [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] [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).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [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).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [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).
+[94] Log closed at 2024-10-18 12:07:59.174528
+
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [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).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [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).
+[95] Log closed at 2024-10-18 12:07:59.763970
+
+[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] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[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:08:00.102757
+
+[87] Log opened at 2024-10-18 12:08:00.129530
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] Log closed at 2024-10-18 12:08:01.210218
+
+[97] Log opened at 2024-10-18 12:08:05.845270
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [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).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [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).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [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).
+[97] Log closed at 2024-10-18 12:08:08.007924
+
+[97] Log opened at 2024-10-18 12:08:08.131888
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] Log opened at 2024-10-18 12:08:08.167212
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [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).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[97] [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).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [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).
+[97] Log closed at 2024-10-18 12:08:08.760196
+
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[91] Log closed at 2024-10-18 12:08:09.186702
+
+[92] Log opened at 2024-10-18 12:08:09.212499
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] Log opened at 2024-10-18 12:08:09.286909
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[101] Log opened at 2024-10-18 12:08:09.295776
+[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101'
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [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).
+[86] [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).
+[101] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] Log closed at 2024-10-18 12:08:10.114502
+
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [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).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [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).
+[92] Log closed at 2024-10-18 12:08:10.703460
+
+[101] [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).
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[101] [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).
+[101] Log closed at 2024-10-18 12:08:11.034276
+
+[98] Log opened at 2024-10-18 12:08:11.069178
+[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98'
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [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).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [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).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [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).
+[98] Log closed at 2024-10-18 12:08:12.164762
+
+[94] Log opened at 2024-10-18 12:08:32.232209
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [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).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [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).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [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).
+[94] Log closed at 2024-10-18 12:08:39.583334
+
+[95] Log opened at 2024-10-18 12:08:46.099046
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [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).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [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).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [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).
+[95] Log closed at 2024-10-18 12:08:49.664959
+
+[100] Log opened at 2024-10-18 12:08:51.217769
+[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100'
+[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[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] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[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] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[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:08:59.762289
+
+[100] Log opened at 2024-10-18 12:09:01.029571
+[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100'
+[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[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] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[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] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[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:09:10.139833
+
+[87] Log opened at 2024-10-18 12:09:36.976840
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] Log closed at 2024-10-18 12:09:45.858566
+
+[87] Log opened at 2024-10-18 12:09:47.961084
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] Log closed at 2024-10-18 12:09:57.350019
+
+[97] Log opened at 2024-10-18 12:10:07.100046
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [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).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [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).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [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).
+[97] Log closed at 2024-10-18 12:10:10.811708
+
+[86] Log opened at 2024-10-18 12:10:51.016244
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] Log closed at 2024-10-18 12:11:00.497763
+
+[92] Log opened at 2024-10-18 12:11:42.597097
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [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).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [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).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [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).
+[92] Log closed at 2024-10-18 12:11:52.250893
+
+[101] Log opened at 2024-10-18 12:12:15.654666
+[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101'
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[101] [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).
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[101] [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).
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[101] [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).
+[101] Log closed at 2024-10-18 12:12:19.252477
+
+[98] Log opened at 2024-10-18 12:12:23.077255
+[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98'
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [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).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [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).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [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).
+[98] Log closed at 2024-10-18 12:12:32.523213
+
+[98] Log opened at 2024-10-18 12:12:35.447469
+[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98'
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [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).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [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).
+[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[98] [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).
+[98] Log closed at 2024-10-18 12:12:44.891672
+
+[94] Log opened at 2024-10-18 12:12:50.148120
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [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).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [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).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [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).
+[94] Log closed at 2024-10-18 12:12:53.863795
+
+[95] Log opened at 2024-10-18 12:13:22.923866
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [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).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [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).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [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).
+[95] Log closed at 2024-10-18 12:13:31.900508
+
+[87] Log opened at 2024-10-18 12:13:38.943340
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] Log closed at 2024-10-18 12:13:41.124910
+
+[87] Log opened at 2024-10-18 12:13:41.236912
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] Log opened at 2024-10-18 12:13:41.288023
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [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).
+[87] [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).
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [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).
+[87] Log closed at 2024-10-18 12:13:41.868724
+
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [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).
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [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).
+[97] Log closed at 2024-10-18 12:13:42.289880
+
+[101] Log opened at 2024-10-18 12:13:42.315544
+[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101'
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] Log opened at 2024-10-18 12:13:42.387296
+[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86'
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] Log opened at 2024-10-18 12:13:42.397860
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[101] [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).
+[86] [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).
+[91] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[86] [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).
+[86] Log closed at 2024-10-18 12:13:43.225110
+
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[101] [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).
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[101] [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).
+[101] Log closed at 2024-10-18 12:13:43.817561
+
+[91] [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).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[91] Log closed at 2024-10-18 12:13:44.154930
+
+[92] Log opened at 2024-10-18 12:13:44.190404
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [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).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [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).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [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).
+[92] Log closed at 2024-10-18 12:13:45.297253
+
+[94] Log opened at 2024-10-18 12:13:59.430537
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [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).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [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).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [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).
+[94] Log closed at 2024-10-18 12:14:06.565656
+
+[95] Log opened at 2024-10-18 12:14:34.860851
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- breakpoint_list -i 1
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- breakpoint_list -i 2
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- breakpoint_list -i 3
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 293
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- run -i 6
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- stack_get -i 7
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- eval -i 8 -- JGNvc3Rl
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- eval -i 9 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- eval -i 10 -- JHBlc28=
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- context_names -i 11 -d 0
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- context_get -i 12 -d 0 -c 0
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- breakpoint_list -i 13
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- breakpoint_remove -i 14 -d 950001
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- run -i 15
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- stack_get -i 16
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- eval -i 17 -- JGNvc3Rl
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- eval -i 18 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- eval -i 19 -- JHBlc28=
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- context_names -i 20 -d 0
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- run -i 21
+[95] [Step Debug] ->
+
+[95] [Step Debug] <- stop -i 22
+[95] [Step Debug] ->
+
+[95] Log closed at 2024-10-18 12:14:43.886931
+
+[100] Log opened at 2024-10-18 12:14:58.461155
+[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100'
+[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[100] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_list -i 1
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_list -i 2
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_list -i 3
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 354
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- run -i 6
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 7
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 8 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 9 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 10 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 11 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 12 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 13 -d 0 -c 1
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 14 -d 0 -c 2
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 15
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 16
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 17 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 18 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 19 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 20 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 21 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 22
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 23
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 24 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 25 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 26 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 27 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 28 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 29
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 30
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 31
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 32 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 33 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 34 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 35 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 36 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_list -i 37
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_remove -i 38 -d 1000001
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_list -i 39
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_set -i 40 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1554
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- run -i 41
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 42
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 43 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 44 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 45 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 46 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 47 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 48
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 49
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 50
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 51 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 52 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 53 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 54 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 55 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 56
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 57
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 58 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 59 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 60 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 61 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 62 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 63
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 64
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 65 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 66 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 67 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 68
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 69 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 70
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 71 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 72 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 73 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 74 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 75
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 76
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 77 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 78 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 79 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 80 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 81 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 82
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 83
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 84
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 85 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 86 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 87 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 88
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 89 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 90
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 91 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 92 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 93 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 94 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 95
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 96
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 97 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 98 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 99 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 100
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 101
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 102 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 103 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 104 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 105
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 106 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 107
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 108 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 109
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 110 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 111 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 112 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 113
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 114 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 115
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 116 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 117
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 118 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 119 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 120 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 121 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 122 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 123
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 124
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 125 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 126 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 127 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 128 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 129 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 130
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 131
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 132 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 133 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 134 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 135 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 136 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 137
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 138
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 139 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 140 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 141 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 142 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 143 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 144
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 145
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 146
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 147 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 148 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 149 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 150 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 151 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 152
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 153
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 154
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 155 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 156 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 157 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 158 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 159 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 160
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 161
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 162 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 163 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 164 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 165 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 166 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 167
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 168
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 169
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 170 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 171 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 172 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 173 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 174 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 175
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 176
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 177
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 178 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 179 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 180 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 181 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 182 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 183 -d 0 -c 1
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 184 -d 0 -c 2
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_list -i 185
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_remove -i 186 -d 1000003
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 187
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 188
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 189
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 190 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 191 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 192 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 193 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 194 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 195 -d 0 -c 1
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 196 -d 0 -c 2
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_list -i 197
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_set -i 198 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2244
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- step_over -i 199
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 200
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 201 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 202 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 203 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 204 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 205 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_list -i 206
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_remove -i 207 -d 1000004
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- breakpoint_set -i 208 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2247
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- run -i 209
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stack_get -i 210
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 211 -- JGNvc3Rl
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 212 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- eval -i 213 -- JHBlc28=
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_names -i 214 -d 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- context_get -i 215 -d 0 -c 0
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- run -i 216
+[100] [Step Debug] ->
+
+[100] [Step Debug] <- stop -i 217
+[100] [Step Debug] ->
+
+[100] Log closed at 2024-10-18 12:17:49.585695
+
+[102] Log opened at 2024-10-18 12:17:52.082699
+[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102'
+[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[102] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_list -i 1
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_list -i 2
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_list -i 3
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2247
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_set -i 5 -t exception -x *
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- run -i 6
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 7
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- eval -i 8 -- JGNvc3Rl
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- eval -i 9 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- eval -i 10 -- JHBlc28=
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 11 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 12 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- run -i 13
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stack_get -i 14
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- eval -i 15 -- JGNvc3Rl
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- eval -i 16 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ==
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- eval -i 17 -- JHBlc28=
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_names -i 18 -d 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- context_get -i 19 -d 0 -c 0
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_list -i 20
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- breakpoint_remove -i 21 -d 1020001
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- run -i 22
+[102] [Step Debug] ->
+
+[102] [Step Debug] <- stop -i 23
+[102] [Step Debug] ->
+
+[102] Log closed at 2024-10-18 12:18:03.755563
+
+[87] Log opened at 2024-10-18 12:18:15.067003
+[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87'
+[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[87] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_list -i 1
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_list -i 2
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- breakpoint_set -i 3 -t exception -x *
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- run -i 4
+[87] [Step Debug] ->
+
+[87] [Step Debug] <- stop -i 5
+[87] [Step Debug] ->
+
+[87] Log closed at 2024-10-18 12:18:22.726452
+
+[97] Log opened at 2024-10-18 12:18:34.625591
+[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97'
+[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[97] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port).
+[97] [Step Debug] ->
+
+[97] [Step Debug] <- breakpoint_list -i 1
+[97] [Step Debug] ->
+
+[97] [Step Debug] <- breakpoint_list -i 2
+[97] [Step Debug] ->
+
+[97] [Step Debug] <- breakpoint_set -i 3 -t exception -x *
+[97] [Step Debug] ->
+
+[97] [Step Debug] <- run -i 4
+[97] [Step Debug] ->
+
+[97] [Step Debug] <- stop -i 5
+[97] [Step Debug] ->
+
+[97] Log closed at 2024-10-18 12:18:42.527330
+
+[101] Log opened at 2024-10-18 12:19:39.434731
+[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101'
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[101] [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).
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[101] [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).
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[101] [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).
+[101] Log closed at 2024-10-18 12:19:41.607696
+
+[101] Log opened at 2024-10-18 12:19:41.756509
+[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101'
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] Log opened at 2024-10-18 12:19:41.790349
+[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92'
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[101] [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).
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [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).
+[101] [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).
+[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[101] [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).
+[101] Log closed at 2024-10-18 12:19:42.384951
+
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [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).
+[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[92] [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).
+[92] Log closed at 2024-10-18 12:19:42.796526
+
+[94] Log opened at 2024-10-18 12:19:42.825844
+[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94'
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] Log opened at 2024-10-18 12:19:42.904191
+[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95'
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] Log opened at 2024-10-18 12:19:42.910519
+[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91'
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [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).
+[95] [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).
+[91] [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).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [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).
+[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[95] [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).
+[95] Log closed at 2024-10-18 12:19:43.743917
+
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [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).
+[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[94] [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).
+[94] Log closed at 2024-10-18 12:19:44.349449
+
+[91] [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).
+[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[91] [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).
+[91] Log closed at 2024-10-18 12:19:44.692158
+
+[100] Log opened at 2024-10-18 12:19:44.722947
+[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100'
+[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[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] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[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] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003.
+[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
+