diff --git a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php
index 38f78b0d..9d630c16 100755
--- a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php
+++ b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php
@@ -797,6 +797,21 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
}
}
+ public function upload_files(){
+
+ if(!empty($_FILES) && $_FILES['file']>0){
+ foreach ($_FILES['file'] as $file) {
+ if ($file->isValid() && !$file->hasMoved()) {
+ $file->move(WRITEPATH . 'uploads');
+ }
+ }
+ }
+
+ return json_encode(['message' => 'Archivos subidos correctamente']);
+
+
+ }
+
/***********************
*
@@ -1479,21 +1494,6 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
}
}
- public function upload_files(){
-
- $files = $this->request->getFiles();
-
- foreach ($files['file'] as $file) {
- if ($file->isValid() && !$file->hasMoved()) {
- $file->move(WRITEPATH . 'uploads');
- }
- }
-
- return json_encode(['message' => 'Archivos subidos correctamente']);
-
-
- }
-
protected function calcular_coste_linea($linea, &$totalPapel, &$margenPapel, &$sumForFactor, &$totalImpresion, &$margenImpresion)
{
if (count($linea) == 0)
diff --git a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/_resumenItems.php b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/_resumenItems.php
index c9f63cd2..997b6bac 100644
--- a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/_resumenItems.php
+++ b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/_resumenItems.php
@@ -219,23 +219,26 @@ if(estado_id?>==2){
Dropzone.autoDiscover = false;
- var dropzoneMulti = new Dropzone('#dropzone-multi', {
- url: "= site_url('presupuestos/presupuestocliente/upload_files') ?>",
- paramName: "file",
- previewTemplate: previewTemplate,
- parallelUploads: 1,
- maxFilesize: 5,
- addRemoveLinks: true,
- uploadMultiple: false,
- autoProcessQueue: true, // Desactivar la subida automática
- success: function(file){
- console.log(file);
- }
- });
+var dropzoneMulti = new Dropzone('#dropzone-multi', {
+ url: "= site_url('presupuestos/presupuestocliente/upload_files') ?>",
+ paramName: "file",
+ uploadMultiple: true,
+ parallelUploads: 100, // Ajusta este número al máximo número de archivos que esperas subir a la vez
+ maxFiles: 100, // Ajusta este número al máximo número de archivos que esperas subir a la vez
+ autoProcessQueue: false,
+ init: function() {
+ var submitButton = document.querySelector("#submit-all")
+ myDropzone = this;
+
+ submitButton.addEventListener("click", function() {
+ myDropzone.processQueue(); // Procesar la cola de archivos
+ });
+ }
+});
+
+ $('#submit-all').on('click', function(){
+ dropzoneMulti.processQueue(); // Procesar la cola de archivos
- // Configurar el evento clic del botón de subida
- document.getElementById("submit-all").addEventListener("click", function() {
- $('#presupuesto-cliente-form').submit();
});
}
diff --git a/xdebug.log b/xdebug.log
index 5e99bdef..be24aae7 100644
--- a/xdebug.log
+++ b/xdebug.log
@@ -782614,3 +782614,24264 @@ Stack trace:
[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
[23] Log closed at 2024-06-01 08:53:30.746233
+[29] Log opened at 2024-06-03 11:57:59.255939
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-06-03 11:58:01.000581
+
+[29] Log opened at 2024-06-03 11:58:01.062303
+[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
+[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[29] Log closed at 2024-06-03 11:58:01.401727
+
+[22] Log opened at 2024-06-03 11:58:01.463447
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-06-03 11:58:02.358155
+
+[22] Log opened at 2024-06-03 11:58:05.160674
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-06-03 11:58:07.172562
+
+[25] Log opened at 2024-06-03 11:58:07.233016
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-06-03 11:58:07.869460
+
+[27] Log opened at 2024-06-03 11:58:07.962346
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] Log opened at 2024-06-03 11:58:07.999058
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-06-03 11:58:08.677697
+
+[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-06-03 11:58:09.390720
+
+[24] Log opened at 2024-06-03 11:58:16.671708
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-06-03 11:58:19.144486
+
+[24] Log opened at 2024-06-03 11:58:19.205921
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log opened at 2024-06-03 11:58:19.243894
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[23] Log opened at 2024-06-03 11:58:19.260890
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] Log opened at 2024-06-03 11:58:19.265154
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] Log opened at 2024-06-03 11:58:19.292594
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log opened at 2024-06-03 11:58:19.315947
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-06-03 11:58:19.633010
+
+[24] Log opened at 2024-06-03 11:58:19.640249
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-06-03 11:58:20.259717
+
+[22] Log opened at 2024-06-03 11:58:20.266058
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-06-03 11:58:20.645269
+
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-06-03 11:58:21.153949
+
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-06-03 11:58:21.551449
+
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-06-03 11:58:21.667404
+
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-06-03 11:58:22.029868
+
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-06-03 11:58:22.176467
+
+[33] Log opened at 2024-06-03 11:58:22.199014
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-06-03 11:58:22.910241
+
+[27] Log opened at 2024-06-03 11:58:33.699276
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[32] Log opened at 2024-06-03 11:58:33.699260
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-06-03 11:58:34.284626
+
+[34] Log opened at 2024-06-03 11:58:34.297798
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-06-03 11:58:34.594908
+
+[25] Log opened at 2024-06-03 11:58:34.653455
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-06-03 11:58:35.568426
+
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-06-03 11:58:35.698532
+
+[30] Log opened at 2024-06-03 11:59:37.999878
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-06-03 11:59:39.919461
+
+[30] Log opened at 2024-06-03 11:59:39.984842
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] Log opened at 2024-06-03 11:59:39.985888
+[28] Log opened at 2024-06-03 11:59:39.985910
+[24] Log opened at 2024-06-03 11:59:39.985941
+[33] Log opened at 2024-06-03 11:59:39.985977
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] Log opened at 2024-06-03 11:59:39.986004
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-06-03 11:59:40.270341
+
+[30] Log opened at 2024-06-03 11:59:40.275848
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-06-03 11:59:40.842667
+
+[25] Log opened at 2024-06-03 11:59:40.848670
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-06-03 11:59:40.975341
+
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[28] Log closed at 2024-06-03 11:59:41.099259
+
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-06-03 11:59:41.328353
+
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-06-03 11:59:41.445635
+
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-06-03 11:59:41.797442
+
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-06-03 11:59:41.921918
+
+[22] Log opened at 2024-06-03 11:59:41.939783
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-06-03 11:59:42.560061
+
+[22] Log opened at 2024-06-03 11:59:45.699897
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-06-03 11:59:48.189404
+
+[22] Log opened at 2024-06-03 11:59:48.256286
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] Log opened at 2024-06-03 11:59:48.257373
+[27] Log opened at 2024-06-03 11:59:48.257193
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[32] Log opened at 2024-06-03 11:59:48.257553
+[23] Log opened at 2024-06-03 11:59:48.257633
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] Log opened at 2024-06-03 11:59:48.258485
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-06-03 11:59:48.533119
+
+[22] Log opened at 2024-06-03 11:59:48.538215
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-06-03 11:59:48.975682
+
+[23] Log opened at 2024-06-03 11:59:48.980270
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-06-03 11:59:49.533835
+
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-06-03 11:59:49.700033
+
+[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-06-03 11:59:49.815724
+
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-06-03 11:59:49.970004
+
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-06-03 11:59:50.322546
+
+[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-06-03 11:59:50.429397
+
+[22] Log opened at 2024-06-03 11:59:50.476501
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-06-03 11:59:51.039313
+
+[24] Log opened at 2024-06-03 12:02:41.380283
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-06-03 12:02:43.896236
+
+[24] Log opened at 2024-06-03 12:02:43.965342
+[30] Log opened at 2024-06-03 12:02:43.965359
+[27] Log opened at 2024-06-03 12:02:43.965374
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[33] Log opened at 2024-06-03 12:02:43.965888
+[25] Log opened at 2024-06-03 12:02:43.965880
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[34] Log opened at 2024-06-03 12:02:43.966395
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-06-03 12:02:44.943678
+
+[24] Log opened at 2024-06-03 12:02:44.947636
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-06-03 12:02:45.239040
+
+[25] Log opened at 2024-06-03 12:02:45.242737
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-06-03 12:02:45.535479
+
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-06-03 12:02:45.557933
+
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-06-03 12:02:45.925918
+
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-06-03 12:02:46.284927
+
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-06-03 12:02:46.639094
+
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-06-03 12:02:46.781503
+
+[34] Log opened at 2024-06-03 12:02:46.808123
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-06-03 12:02:47.427116
+
+[34] Log opened at 2024-06-03 12:02:51.406999
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-06-03 12:02:53.865230
+
+[34] Log opened at 2024-06-03 12:02:53.930034
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] Log opened at 2024-06-03 12:02:53.938372
+[35] Log opened at 2024-06-03 12:02:53.938404
+[23] Log opened at 2024-06-03 12:02:53.938422
+[32] Log opened at 2024-06-03 12:02:53.938455
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[36] Log opened at 2024-06-03 12:02:53.938732
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-06-03 12:02:54.310424
+
+[34] Log opened at 2024-06-03 12:02:54.317281
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-06-03 12:02:55.049026
+
+[36] Log opened at 2024-06-03 12:02:55.053701
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-06-03 12:02:55.584192
+
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-06-03 12:02:55.918441
+
+[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-06-03 12:02:56.241741
+
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-06-03 12:02:56.568814
+
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-06-03 12:02:56.672376
+
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-06-03 12:02:56.773109
+
+[34] Log opened at 2024-06-03 12:02:56.829975
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-06-03 12:02:57.427490
+
+[30] Log opened at 2024-06-03 12:03:53.617262
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-06-03 12:03:55.496960
+
+[30] Log opened at 2024-06-03 12:03:55.568197
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] Log opened at 2024-06-03 12:03:55.703589
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] Log opened at 2024-06-03 12:03:55.707907
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] Log opened at 2024-06-03 12:03:55.708446
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] Log opened at 2024-06-03 12:03:55.725482
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] Log opened at 2024-06-03 12:03:55.726761
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-06-03 12:03:55.992668
+
+[30] Log opened at 2024-06-03 12:03:55.998273
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-06-03 12:03:56.571432
+
+[32] Log opened at 2024-06-03 12:03:56.576710
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-06-03 12:03:56.694600
+
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-06-03 12:03:56.818062
+
+[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-06-03 12:03:56.934250
+
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-06-03 12:03:57.053501
+
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-06-03 12:03:57.175527
+
+[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-06-03 12:03:57.400278
+
+[27] Log opened at 2024-06-03 12:03:57.422312
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-06-03 12:03:58.099872
+
+[24] Log opened at 2024-06-03 12:04:01.940096
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-06-03 12:04:03.482434
+
+[24] Log opened at 2024-06-03 12:04:03.550424
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] Log opened at 2024-06-03 12:04:03.552630
+[36] Log opened at 2024-06-03 12:04:03.552659
+[34] Log opened at 2024-06-03 12:04:03.552655
+[22] Log opened at 2024-06-03 12:04:03.552732
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[37] Log opened at 2024-06-03 12:04:03.553295
+[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-06-03 12:04:03.868064
+
+[24] Log opened at 2024-06-03 12:04:03.873303
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-06-03 12:04:04.366959
+
+[33] Log opened at 2024-06-03 12:04:04.371966
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-06-03 12:04:04.656633
+
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-06-03 12:04:04.802347
+
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-06-03 12:04:05.136601
+
+[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[37] Log closed at 2024-06-03 12:04:05.478303
+
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-06-03 12:04:05.587991
+
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-06-03 12:04:05.686394
+
+[24] Log opened at 2024-06-03 12:04:05.732204
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-06-03 12:04:06.332544
+
+[35] Log opened at 2024-06-03 12:04:11.461968
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-06-03 12:04:13.322392
+
+[35] Log opened at 2024-06-03 12:04:13.381774
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[32] Log opened at 2024-06-03 12:04:13.384055
+[22] Log opened at 2024-06-03 12:04:13.384124
+[27] Log opened at 2024-06-03 12:04:13.384141
+[23] Log opened at 2024-06-03 12:04:13.384181
+[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32'
+[30] Log opened at 2024-06-03 12:04:13.384193
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-06-03 12:04:13.657697
+
+[35] Log opened at 2024-06-03 12:04:13.663154
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-06-03 12:04:14.111370
+
+[22] Log opened at 2024-06-03 12:04:14.116488
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[32] Log closed at 2024-06-03 12:04:14.251994
+
+[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-06-03 12:04:14.394108
+
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-06-03 12:04:14.673913
+
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-06-03 12:04:14.784729
+
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-06-03 12:04:15.128032
+
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-06-03 12:04:15.236401
+
+[22] Log opened at 2024-06-03 12:04:15.280397
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-06-03 12:04:15.886968
+
+[36] Log opened at 2024-06-03 12:04:57.126697
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-06-03 12:04:59.568316
+
+[33] Log opened at 2024-06-03 12:04:59.643879
+[24] Log opened at 2024-06-03 12:04:59.643874
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[30] Log opened at 2024-06-03 12:04:59.644096
+[34] Log opened at 2024-06-03 12:04:59.644091
+[36] Log opened at 2024-06-03 12:04:59.644147
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[23] Log opened at 2024-06-03 12:04:59.644382
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-06-03 12:05:00.571646
+
+[36] Log opened at 2024-06-03 12:05:00.576731
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-06-03 12:05:00.709371
+
+[34] Log opened at 2024-06-03 12:05:00.713056
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-06-03 12:05:01.018170
+
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-06-03 12:05:01.032854
+
+[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-06-03 12:05:01.372269
+
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-06-03 12:05:01.730834
+
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-06-03 12:05:02.094027
+
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-06-03 12:05:02.199003
+
+[24] Log opened at 2024-06-03 12:05:02.218051
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-06-03 12:05:02.861774
+
+[24] Log opened at 2024-06-03 12:05:03.078753
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-06-03 12:05:05.483573
+
+[24] Log opened at 2024-06-03 12:05:05.554845
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] Log opened at 2024-06-03 12:05:05.557094
+[36] Log opened at 2024-06-03 12:05:05.557093
+[30] Log opened at 2024-06-03 12:05:05.557057
+[23] Log opened at 2024-06-03 12:05:05.557264
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[33] Log opened at 2024-06-03 12:05:05.557107
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-06-03 12:05:05.839707
+
+[24] Log opened at 2024-06-03 12:05:05.844578
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-06-03 12:05:06.267338
+
+[34] Log opened at 2024-06-03 12:05:06.271992
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-06-03 12:05:06.509068
+
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-06-03 12:05:06.631137
+
+[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-06-03 12:05:06.754908
+
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] Log closed at 2024-06-03 12:05:06.870156
+
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-06-03 12:05:06.988623
+
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] Log closed at 2024-06-03 12:05:07.093041
+
+[24] Log opened at 2024-06-03 12:05:07.109246
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-06-03 12:05:07.729343
+
+[35] Log opened at 2024-06-03 12:06:21.711411
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-06-03 12:06:24.294275
+
+[35] Log opened at 2024-06-03 12:06:24.360909
+[22] Log opened at 2024-06-03 12:06:24.360905
+[27] Log opened at 2024-06-03 12:06:24.360930
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[30] Log opened at 2024-06-03 12:06:24.361316
+[33] Log opened at 2024-06-03 12:06:24.361453
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[38] Log opened at 2024-06-03 12:06:24.361746
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-06-03 12:06:25.181324
+
+[35] Log opened at 2024-06-03 12:06:25.186680
+[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-06-03 12:06:25.313865
+
+[30] Log opened at 2024-06-03 12:06:25.318575
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-06-03 12:06:25.437210
+
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-06-03 12:06:25.633953
+
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-06-03 12:06:25.775899
+
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-06-03 12:06:26.121011
+
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-06-03 12:06:26.476937
+
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[35] Log closed at 2024-06-03 12:06:26.587400
+
+[38] Log opened at 2024-06-03 12:06:26.608019
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] Log closed at 2024-06-03 12:06:27.234426
+
+[24] Log opened at 2024-06-03 12:11:34.300114
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-06-03 12:11:36.867339
+
+[33] Log opened at 2024-06-03 12:11:36.968195
+[24] Log opened at 2024-06-03 12:11:36.968212
+[27] Log opened at 2024-06-03 12:11:36.968191
+[22] Log opened at 2024-06-03 12:11:36.968206
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[39] Log opened at 2024-06-03 12:11:36.968440
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] Log opened at 2024-06-03 12:11:36.969692
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-06-03 12:11:37.850874
+
+[24] Log opened at 2024-06-03 12:11:37.855186
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-06-03 12:11:38.138803
+
+[27] Log opened at 2024-06-03 12:11:38.142115
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-06-03 12:11:38.452537
+
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-06-03 12:11:38.483208
+
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-06-03 12:11:38.873624
+
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] Log closed at 2024-06-03 12:11:39.228501
+
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] Log closed at 2024-06-03 12:11:39.585023
+
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-06-03 12:11:39.693683
+
+[33] Log opened at 2024-06-03 12:11:39.759115
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-06-03 12:11:40.410949
+
+[36] Log opened at 2024-06-03 12:14:14.757443
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1484
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1860
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- run -i 12
+[36] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- stack_get -i 13
+[36] [Step Debug] ->
+
+[34] Log opened at 2024-06-03 12:14:24.005417
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1484
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1860
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 12
+[34] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_remove -i 14 -d 360002
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- run -i 15
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-06-03 12:14:32.164128
+
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_remove -i 13 -d 340002
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- stack_get -i 14
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 15
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:14:36.526878
+
+[34] Log opened at 2024-06-03 12:14:36.710021
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1484
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 11
+[40] Log opened at 2024-06-03 12:14:36.837004
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] Log opened at 2024-06-03 12:14:36.839607
+[30] Log opened at 2024-06-03 12:14:36.839620
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] ->
+
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[40] [Step Debug] ->
+
+[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ->
+
+[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[39] [Step Debug] ->
+
+[40] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[30] [Step Debug] ->
+
+[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[40] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[39] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[30] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1484
+[30] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1484
+[39] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1484
+[39] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[40] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[39] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error"
+[40] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[30] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[39] [Step Debug] ->
+
+[40] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error"
+[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[30] [Step Debug] ->
+
+[40] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[39] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[30] [Step Debug] ->
+
+[40] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[39] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1
+[30] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1
+[30] [Step Debug] ->
+
+[40] [Step Debug] <- run -i 11
+[30] [Step Debug] <- run -i 11
+[39] [Step Debug] <- run -i 11
+[22] Log opened at 2024-06-03 12:14:36.859666
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[27] Log opened at 2024-06-03 12:14:36.862892
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[22] [Step Debug] ->
+
+[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[22] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[27] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[27] [Step Debug] ->
+
+[22] [Step Debug] <- run -i 5
+[27] [Step Debug] <- run -i 5
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:14:37.195193
+
+[34] Log opened at 2024-06-03 12:14:37.201007
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1484
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[40] [Step Debug] ->
+
+[40] Log closed at 2024-06-03 12:14:38.137039
+
+[40] Log opened at 2024-06-03 12:14:38.142087
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1484
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[40] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[30] Log closed at 2024-06-03 12:14:38.480496
+
+[39] [Step Debug] ->
+
+[39] Log closed at 2024-06-03 12:14:38.881348
+
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1484
+[27] [Step Debug] ->
+
+[27] Log closed at 2024-06-03 12:14:39.221636
+
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1484
+[22] [Step Debug] ->
+
+[22] Log closed at 2024-06-03 12:14:39.555090
+
+[33] Log opened at 2024-06-03 12:15:28.039527
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[24] Log opened at 2024-06-03 12:15:28.039842
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[33] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[24] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[24] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[33] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[24] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[33] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1484
+[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1484
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[24] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[24] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[24] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[33] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1484
+[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1484
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- run -i 11
+[40] [Step Debug] <- run -i 11
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- run -i 13
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- run -i 13
+[24] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[33] Log closed at 2024-06-03 12:15:28.662731
+
+[40] [Step Debug] ->
+
+[40] Log closed at 2024-06-03 12:15:28.757306
+
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:15:28.851752
+
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-06-03 12:15:30.226697
+
+[38] Log opened at 2024-06-03 12:15:30.330115
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1484
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- run -i 11
+[41] Log opened at 2024-06-03 12:15:30.455980
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ->
+
+[33] Log opened at 2024-06-03 12:15:30.461815
+[41] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[41] [Step Debug] ->
+
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] ->
+
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] Log opened at 2024-06-03 12:15:30.463946
+[41] [Step Debug] ->
+
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] Log opened at 2024-06-03 12:15:30.465629
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1484
+[33] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1484
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[24] [Step Debug] ->
+
+[36] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[33] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[24] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[41] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Error"
+[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[33] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[33] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Fatal error"
+[41] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[33] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Parse error"
+[41] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1484
+[33] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Unknown error"
+[36] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1484
+[33] [Step Debug] <- feature_set -i 7 -n max_children -v 100
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 8 -n max_data -v 8192
+[33] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1
+[33] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[36] [Step Debug] ->
+
+[33] [Step Debug] <- run -i 10
+[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[41] [Step Debug] <- run -i 11
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[36] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[36] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[36] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[24] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[36] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[24] [Step Debug] ->
+
+[36] [Step Debug] ->
+
+[24] [Step Debug] <- run -i 11
+[36] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- run -i 11
+[39] Log opened at 2024-06-03 12:15:30.485839
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1484
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- run -i 11
+[38] [Step Debug] ->
+
+[38] Log closed at 2024-06-03 12:15:30.851699
+
+[38] Log opened at 2024-06-03 12:15:30.856832
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1484
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- run -i 11
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1484
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-06-03 12:15:31.309305
+
+[36] Log opened at 2024-06-03 12:15:31.315704
+[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
+[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[36] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1484
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[36] [Step Debug] ->
+
+[36] [Step Debug] <- run -i 11
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1484
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-06-03 12:15:31.441745
+
+[39] [Step Debug] ->
+
+[39] Log closed at 2024-06-03 12:15:31.601826
+
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1
+[33] [Step Debug] ->
+
+[33] Log closed at 2024-06-03 12:15:31.915506
+
+[41] [Step Debug] ->
+
+[41] Log closed at 2024-06-03 12:15:32.444394
+
+[38] [Step Debug] ->
+
+[38] Log closed at 2024-06-03 12:15:32.813770
+
+[36] [Step Debug] ->
+
+[36] Log closed at 2024-06-03 12:15:32.916988
+
+[38] Log opened at 2024-06-03 12:15:32.948941
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1484
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- run -i 11
+[38] [Step Debug] ->
+
+[38] Log closed at 2024-06-03 12:15:33.602105
+
+[30] Log opened at 2024-06-03 12:22:57.250551
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- run -i 11
+[30] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[30] Log closed at 2024-06-03 12:22:59.723841
+
+[40] Log opened at 2024-06-03 12:22:59.827532
+[24] Log opened at 2024-06-03 12:22:59.827592
+[33] Log opened at 2024-06-03 12:22:59.827582
+[41] Log opened at 2024-06-03 12:22:59.827608
+[34] Log opened at 2024-06-03 12:22:59.827596
+[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[30] Log opened at 2024-06-03 12:22:59.828431
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[41] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ->
+
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[40] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[24] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[30] [Step Debug] ->
+
+[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[41] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[41] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[40] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[33] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[41] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[40] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[24] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[33] [Step Debug] ->
+
+[40] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[33] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[41] [Step Debug] ->
+
+[40] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[41] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[41] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[40] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[34] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[33] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[41] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[30] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[41] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[24] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[41] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[24] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[41] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[24] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[41] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[33] [Step Debug] ->
+
+[40] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[40] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[40] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[41] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[40] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[30] [Step Debug] ->
+
+[40] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[40] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[33] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[24] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[41] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[30] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[40] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[40] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[30] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[41] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[40] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[24] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[40] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[33] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[40] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[40] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[41] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[40] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[33] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[41] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[41] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[40] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[24] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[40] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[40] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[33] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[41] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[40] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[24] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[41] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[24] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[40] [Step Debug] ->
+
+[40] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[40] [Step Debug] ->
+
+[24] [Step Debug] <- run -i 21
+[41] [Step Debug] <- run -i 21
+[34] [Step Debug] <- run -i 21
+[40] [Step Debug] <- run -i 21
+[33] [Step Debug] <- run -i 21
+[30] [Step Debug] <- run -i 21
+[30] [Step Debug] ->
+
+[30] Log closed at 2024-06-03 12:23:00.835744
+
+[30] Log opened at 2024-06-03 12:23:00.840893
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- run -i 11
+[41] [Step Debug] ->
+
+[41] Log closed at 2024-06-03 12:23:01.134702
+
+[41] Log opened at 2024-06-03 12:23:01.139535
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- run -i 11
+[41] [Step Debug] ->
+
+[41] Log closed at 2024-06-03 12:23:01.434022
+
+[33] [Step Debug] ->
+
+[33] Log closed at 2024-06-03 12:23:01.457212
+
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:23:01.857593
+
+[40] [Step Debug] ->
+
+[40] Log closed at 2024-06-03 12:23:02.188037
+
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-06-03 12:23:02.568811
+
+[30] [Step Debug] ->
+
+[30] Log closed at 2024-06-03 12:23:02.696982
+
+[24] Log opened at 2024-06-03 12:23:02.721336
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- run -i 11
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-06-03 12:23:03.313629
+
+[38] Log opened at 2024-06-03 12:24:46.860053
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- run -i 11
+[38] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[38] Log closed at 2024-06-03 12:24:49.373913
+
+[33] Log opened at 2024-06-03 12:24:49.472430
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[41] Log opened at 2024-06-03 12:24:49.472586
+[38] Log opened at 2024-06-03 12:24:49.472630
+[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
+[22] Log opened at 2024-06-03 12:24:49.472684
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[42] Log opened at 2024-06-03 12:24:49.472655
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] Log opened at 2024-06-03 12:24:49.473363
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[41] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[33] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[22] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[41] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[42] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[22] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[42] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[33] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[38] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[22] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[42] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[41] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[22] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[42] [Step Debug] ->
+
+[41] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[41] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[22] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[41] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[33] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[42] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[41] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[38] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[38] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[41] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[41] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[22] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[22] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[22] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[41] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[38] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[41] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[42] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[33] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[22] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[41] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[38] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[22] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[38] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[42] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[41] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[22] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[41] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[41] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[22] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[38] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[41] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[42] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[41] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[22] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[33] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[22] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[38] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[41] [Step Debug] ->
+
+[41] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[41] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[42] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[22] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[33] [Step Debug] <- run -i 19
+[42] [Step Debug] <- run -i 21
+[38] [Step Debug] <- run -i 19
+[22] [Step Debug] <- run -i 21
+[34] [Step Debug] <- run -i 19
+[41] [Step Debug] <- run -i 19
+[38] [Step Debug] ->
+
+[38] Log closed at 2024-06-03 12:24:50.290146
+
+[38] Log opened at 2024-06-03 12:24:50.295537
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- run -i 11
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:24:50.390004
+
+[34] Log opened at 2024-06-03 12:24:50.394287
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 11
+[33] [Step Debug] ->
+
+[33] Log closed at 2024-06-03 12:24:50.507741
+
+[41] [Step Debug] ->
+
+[41] Log closed at 2024-06-03 12:24:50.622594
+
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:24:50.707315
+
+[22] [Step Debug] ->
+
+[22] Log closed at 2024-06-03 12:24:50.978081
+
+[42] [Step Debug] ->
+
+[42] Log closed at 2024-06-03 12:24:51.389341
+
+[38] [Step Debug] ->
+
+[38] Log closed at 2024-06-03 12:24:51.523404
+
+[42] Log opened at 2024-06-03 12:24:51.547001
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- run -i 11
+[42] [Step Debug] ->
+
+[42] Log closed at 2024-06-03 12:24:52.191800
+
+[30] Log opened at 2024-06-03 12:25:14.218537
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- run -i 11
+[30] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[30] Log closed at 2024-06-03 12:25:16.704863
+
+[22] Log opened at 2024-06-03 12:25:16.801873
+[30] Log opened at 2024-06-03 12:25:16.801854
+[39] Log opened at 2024-06-03 12:25:16.801872
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[24] Log opened at 2024-06-03 12:25:16.801984
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[43] Log opened at 2024-06-03 12:25:16.801979
+[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] Log opened at 2024-06-03 12:25:16.803647
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ->
+
+[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] ->
+
+[22] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[43] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[43] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[24] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[30] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[39] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[39] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[43] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[43] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[22] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[30] [Step Debug] ->
+
+[43] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[22] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[43] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[22] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[43] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[22] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[22] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[43] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[39] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[22] [Step Debug] ->
+
+[43] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[39] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[30] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] ->
+
+[43] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[43] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[43] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[22] [Step Debug] ->
+
+[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[39] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[43] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[30] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[43] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[43] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[22] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[43] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[30] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[43] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[39] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[24] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[43] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[30] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[43] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[30] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[39] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[39] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[22] [Step Debug] ->
+
+[43] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[43] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[39] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[43] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] ->
+
+[43] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[24] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[30] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[22] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[22] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[39] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[43] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[39] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[43] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[22] [Step Debug] ->
+
+[43] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[43] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[24] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[30] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[24] [Step Debug] ->
+
+[43] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[39] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[43] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[22] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[39] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[43] [Step Debug] ->
+
+[43] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[39] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[43] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[39] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[30] [Step Debug] <- run -i 19
+[24] [Step Debug] <- run -i 21
+[22] [Step Debug] <- run -i 19
+[39] [Step Debug] <- run -i 21
+[43] [Step Debug] <- run -i 20
+[34] [Step Debug] <- run -i 20
+[30] [Step Debug] ->
+
+[30] Log closed at 2024-06-03 12:25:17.599810
+
+[30] Log opened at 2024-06-03 12:25:17.605391
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- run -i 11
+[22] [Step Debug] ->
+
+[22] Log closed at 2024-06-03 12:25:17.718760
+
+[22] Log opened at 2024-06-03 12:25:17.723422
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- run -i 11
+[22] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[22] Log closed at 2024-06-03 12:25:18.012508
+
+[34] Log closed at 2024-06-03 12:25:18.013543
+
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-06-03 12:25:18.382655
+
+[39] [Step Debug] ->
+
+[39] Log closed at 2024-06-03 12:25:18.746804
+
+[43] [Step Debug] ->
+
+[43] Log closed at 2024-06-03 12:25:19.106439
+
+[30] [Step Debug] ->
+
+[30] Log closed at 2024-06-03 12:25:19.230780
+
+[22] Log opened at 2024-06-03 12:25:19.263447
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- run -i 11
+[22] [Step Debug] ->
+
+[22] Log closed at 2024-06-03 12:25:19.876897
+
+[38] Log opened at 2024-06-03 12:26:52.230503
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- run -i 11
+[38] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[38] Log closed at 2024-06-03 12:26:54.682868
+
+[38] Log opened at 2024-06-03 12:26:54.783828
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[42] Log opened at 2024-06-03 12:26:54.784062
+[24] Log opened at 2024-06-03 12:26:54.784029
+[34] Log opened at 2024-06-03 12:26:54.784036
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[44] Log opened at 2024-06-03 12:26:54.784306
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[39] Log opened at 2024-06-03 12:26:54.784707
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ->
+
+[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[42] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[42] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[42] [Step Debug] ->
+
+[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[44] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[24] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[44] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[39] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[44] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[38] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[39] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[38] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[44] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[24] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[24] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[38] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[39] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[38] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[39] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[24] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[39] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[44] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[39] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[42] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[39] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[24] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[42] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[39] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[39] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[42] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[42] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[24] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[39] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[38] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[38] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[39] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[42] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[39] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[44] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[39] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[38] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[42] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[24] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[38] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[44] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[39] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[38] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[38] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[24] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[39] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[44] [Step Debug] <- run -i 21
+[38] [Step Debug] <- run -i 20
+[39] [Step Debug] <- run -i 21
+[34] [Step Debug] <- run -i 18
+[24] [Step Debug] <- run -i 20
+[42] [Step Debug] <- run -i 21
+[39] [Step Debug] ->
+
+[39] Log closed at 2024-06-03 12:26:55.545831
+
+[39] Log opened at 2024-06-03 12:26:55.551424
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- run -i 11
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:26:55.685801
+
+[34] Log opened at 2024-06-03 12:26:55.690317
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 11
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-06-03 12:26:55.807236
+
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:26:55.993586
+
+[38] [Step Debug] ->
+
+[38] Log closed at 2024-06-03 12:26:56.037552
+
+[44] [Step Debug] ->
+
+[44] Log closed at 2024-06-03 12:26:56.416742
+
+[42] [Step Debug] ->
+
+[42] Log closed at 2024-06-03 12:26:56.820343
+
+[39] [Step Debug] ->
+
+[39] Log closed at 2024-06-03 12:26:56.948886
+
+[39] Log opened at 2024-06-03 12:26:56.984528
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- run -i 11
+[39] [Step Debug] ->
+
+[39] Log closed at 2024-06-03 12:26:57.638189
+
+[30] Log opened at 2024-06-03 12:30:34.658476
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- run -i 11
+[30] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[30] Log closed at 2024-06-03 12:30:37.234513
+
+[30] Log opened at 2024-06-03 12:30:37.334860
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[34] Log opened at 2024-06-03 12:30:37.335214
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[22] Log opened at 2024-06-03 12:30:37.335355
+[33] Log opened at 2024-06-03 12:30:37.335494
+[24] Log opened at 2024-06-03 12:30:37.335442
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[45] Log opened at 2024-06-03 12:30:37.335673
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[22] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ->
+
+[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[24] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[33] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[30] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[33] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[30] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[22] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[45] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[22] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[33] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[45] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[45] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[22] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[45] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[22] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[45] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[22] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[45] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[33] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[45] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[24] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[45] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[22] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[24] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[45] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[22] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[24] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[22] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[45] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[22] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[45] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[24] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[33] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[45] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[22] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[33] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[45] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[45] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[45] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[33] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[24] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[45] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[24] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[22] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[45] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[22] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[24] [Step Debug] <- run -i 19
+[34] [Step Debug] <- run -i 19
+[45] [Step Debug] <- run -i 19
+[22] [Step Debug] <- run -i 19
+[33] [Step Debug] <- run -i 21
+[30] [Step Debug] <- run -i 15
+[30] [Step Debug] ->
+
+[30] Log closed at 2024-06-03 12:30:38.319596
+
+[30] Log opened at 2024-06-03 12:30:38.324605
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- run -i 11
+[22] [Step Debug] ->
+
+[22] Log closed at 2024-06-03 12:30:38.662371
+
+[22] Log opened at 2024-06-03 12:30:38.666978
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- run -i 11
+[22] [Step Debug] ->
+
+[22] Log closed at 2024-06-03 12:30:38.955732
+
+[33] [Step Debug] ->
+
+[33] Log closed at 2024-06-03 12:30:38.982567
+
+[45] [Step Debug] ->
+
+[45] Log closed at 2024-06-03 12:30:39.366828
+
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:30:39.793123
+
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-06-03 12:30:40.144403
+
+[30] [Step Debug] ->
+
+[30] Log closed at 2024-06-03 12:30:40.244625
+
+[24] Log opened at 2024-06-03 12:30:40.280643
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- run -i 11
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-06-03 12:30:40.903144
+
+[24] Log opened at 2024-06-03 12:30:45.456227
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- run -i 11
+[24] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-06-03 12:30:48.029275
+
+[24] Log opened at 2024-06-03 12:30:48.150918
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[24] [Step Debug] ->
+
+[39] Log opened at 2024-06-03 12:30:48.157179
+[44] Log opened at 2024-06-03 12:30:48.157248
+[42] Log opened at 2024-06-03 12:30:48.157195
+[38] Log opened at 2024-06-03 12:30:48.157198
+[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[46] Log opened at 2024-06-03 12:30:48.157239
+[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
+[24] [Step Debug] ->
+
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[38] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[38] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[44] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[39] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[38] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[42] [Step Debug] ->
+
+[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[38] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[46] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[42] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[24] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[46] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[46] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[46] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[39] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[46] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[38] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[44] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[39] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[24] [Step Debug] <- run -i 11
+[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[46] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[39] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[46] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[39] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[38] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[46] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[39] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[44] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[44] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[46] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[39] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[38] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[42] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[39] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[46] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[44] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[42] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[38] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[39] [Step Debug] ->
+
+[38] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[46] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[38] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[38] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[38] [Step Debug] <- run -i 15
+[44] [Step Debug] <- run -i 15
+[46] [Step Debug] <- run -i 15
+[42] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- run -i 15
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- run -i 15
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-06-03 12:30:48.555171
+
+[24] Log opened at 2024-06-03 12:30:48.561762
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- run -i 11
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] ->
+
+[44] Log closed at 2024-06-03 12:30:49.662929
+
+[44] Log opened at 2024-06-03 12:30:49.667499
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- run -i 11
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[39] [Step Debug] ->
+
+[39] Log closed at 2024-06-03 12:30:49.985167
+
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[46] [Step Debug] ->
+
+[46] Log closed at 2024-06-03 12:30:50.312538
+
+[38] [Step Debug] ->
+
+[38] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[38] [Step Debug] ->
+
+[38] Log closed at 2024-06-03 12:30:50.666520
+
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[42] [Step Debug] ->
+
+[42] Log closed at 2024-06-03 12:30:51.068836
+
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-06-03 12:30:51.174392
+
+[44] [Step Debug] ->
+
+[44] Log closed at 2024-06-03 12:30:51.293646
+
+[24] Log opened at 2024-06-03 12:30:51.336617
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- run -i 11
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-06-03 12:30:51.901488
+
+[33] Log opened at 2024-06-03 12:31:14.442266
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- run -i 11
+[33] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[33] Log closed at 2024-06-03 12:31:16.335447
+
+[33] Log opened at 2024-06-03 12:31:16.429414
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[33] [Step Debug] ->
+
+[30] Log opened at 2024-06-03 12:31:16.435876
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[34] Log opened at 2024-06-03 12:31:16.436089
+[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[45] Log opened at 2024-06-03 12:31:16.436198
+[46] Log opened at 2024-06-03 12:31:16.436203
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[33] [Step Debug] ->
+
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[39] Log opened at 2024-06-03 12:31:16.436441
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] ->
+
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[46] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[30] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[45] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[30] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[46] [Step Debug] ->
+
+[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[45] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[39] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[30] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[45] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[46] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[30] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[45] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[39] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[46] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[45] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[33] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[45] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[39] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[45] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[46] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[39] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[45] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[39] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[46] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[30] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[45] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[45] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[30] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[30] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[33] [Step Debug] <- run -i 11
+[46] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[45] [Step Debug] <- run -i 12
+[46] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] <- run -i 12
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[46] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[46] [Step Debug] ->
+
+[39] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[39] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- run -i 15
+[34] [Step Debug] <- run -i 15
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- run -i 17
+[33] [Step Debug] ->
+
+[33] Log closed at 2024-06-03 12:31:16.735994
+
+[33] Log opened at 2024-06-03 12:31:16.742121
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- run -i 11
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:31:17.232652
+
+[34] Log opened at 2024-06-03 12:31:17.239379
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 11
+[30] [Step Debug] ->
+
+[30] Log closed at 2024-06-03 12:31:17.376961
+
+[46] [Step Debug] ->
+
+[46] Log closed at 2024-06-03 12:31:17.494530
+
+[45] [Step Debug] ->
+
+[45] Log closed at 2024-06-03 12:31:17.800406
+
+[39] [Step Debug] ->
+
+[39] Log closed at 2024-06-03 12:31:17.914574
+
+[33] [Step Debug] ->
+
+[33] Log closed at 2024-06-03 12:31:18.038666
+
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:31:18.143191
+
+[39] Log opened at 2024-06-03 12:31:18.172224
+[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
+[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[39] [Step Debug] ->
+
+[39] [Step Debug] <- run -i 11
+[39] [Step Debug] ->
+
+[39] Log closed at 2024-06-03 12:31:18.794045
+
+[30] Log opened at 2024-06-03 12:31:40.558354
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- run -i 11
+[30] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[30] Log closed at 2024-06-03 12:31:42.211854
+
+[30] Log opened at 2024-06-03 12:31:42.321807
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] Log opened at 2024-06-03 12:31:42.322997
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[46] Log opened at 2024-06-03 12:31:42.323177
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] Log opened at 2024-06-03 12:31:42.323212
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] Log opened at 2024-06-03 12:31:42.323305
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] Log opened at 2024-06-03 12:31:42.323748
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] ->
+
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ->
+
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[30] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[33] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[46] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[46] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[46] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[30] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[48] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[48] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[48] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[46] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[46] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[46] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[42] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[46] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[46] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[30] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[46] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[33] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[30] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[42] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[46] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[42] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[33] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[46] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error"
+[34] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[46] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[33] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[30] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[48] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1
+[46] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[42] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[48] [Step Debug] ->
+
+[33] [Step Debug] <- run -i 15
+[46] [Step Debug] <- run -i 15
+[30] [Step Debug] <- run -i 15
+[48] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[42] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[42] [Step Debug] <- run -i 17
+[34] [Step Debug] <- run -i 16
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- run -i 18
+[30] [Step Debug] ->
+
+[30] Log closed at 2024-06-03 12:31:42.623073
+
+[30] Log opened at 2024-06-03 12:31:42.628463
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- run -i 11
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:31:43.096925
+
+[34] Log opened at 2024-06-03 12:31:43.102133
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 11
+[33] [Step Debug] ->
+
+[33] Log closed at 2024-06-03 12:31:43.354407
+
+[46] [Step Debug] ->
+
+[46] Log closed at 2024-06-03 12:31:43.467748
+
+[42] [Step Debug] ->
+
+[42] Log closed at 2024-06-03 12:31:43.579431
+
+[30] [Step Debug] ->
+
+[30] Log closed at 2024-06-03 12:31:43.680497
+
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-06-03 12:31:44.028910
+
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:31:44.130032
+
+[46] Log opened at 2024-06-03 12:31:44.166475
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- run -i 11
+[46] [Step Debug] ->
+
+[46] Log closed at 2024-06-03 12:31:44.822962
+
+[45] Log opened at 2024-06-03 12:31:51.039332
+[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
+[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[45] [Step Debug] ->
+
+[45] [Step Debug] <- run -i 11
+[45] [Step Debug] ->
+
+[45] [Step Debug] ->
+
+[45] Log closed at 2024-06-03 12:31:51.977613
+
+[44] Log opened at 2024-06-03 12:32:15.108461
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[24] Log opened at 2024-06-03 12:32:15.108913
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[24] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[44] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[44] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[44] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[44] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[44] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- run -i 15
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- run -i 15
+[44] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- stack_get -i 16
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- eval -i 17 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNmQyMzYxMmYzM2MwM2ZlMWJkZDVkYjFjNzNkMTNjYjM0ZmY2NjI4MzEyOTAxNDkyMTI3ZDNiMWNiZDQ0Mzc0MiddPSR0aGlzLT5yZXF1ZXN0LT5nZXRQb3N0KCdzb2xhcGFzJyk=
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- property_get -i 18 -n "$DEVSENSE_EVAL_CACHE['6d23612f33c03fe1bdd5db1c73d13cb34ff6628312901492127d3b1cbd443742']" -c 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- context_names -i 19 -d 0
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- context_get -i 20 -d 0 -c 0
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- context_names -i 21 -d 0
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- context_get -i 22 -d 0 -c 0
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- context_names -i 23 -d 0
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- property_get -i 24 -n "$this->request" -d 0 -c 0
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- context_get -i 25 -d 0 -c 0
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- property_get -i 26 -n "$this->request->validLocales" -p 0 -d 0 -c 0
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- context_names -i 27 -d 0
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- eval -i 28 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNzVlZjkwNDdmZmYwM2MzODMyZWFkNzYzMTAwNzIwMDMxNmZjNzJiMmFjZjQ2MTEyOTc2YWFhNmNjZWJlZDVjZCddPSR0aGlzLT5yZXF1ZXN0LT5nZXRQb3N0KCk=
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- property_get -i 29 -n "$DEVSENSE_EVAL_CACHE['75ef9047fff03c3832ead7631007200316fc72b2acf46112976aaa6ccebed5cd']" -c 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- context_get -i 30 -d 0 -c 0
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- run -i 31
+[44] [Step Debug] ->
+
+[44] Log closed at 2024-06-03 12:33:38.874462
+
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- stack_get -i 16
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- eval -i 17 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNzVlZjkwNDdmZmYwM2MzODMyZWFkNzYzMTAwNzIwMDMxNmZjNzJiMmFjZjQ2MTEyOTc2YWFhNmNjZWJlZDVjZCddPSR0aGlzLT5yZXF1ZXN0LT5nZXRQb3N0KCk=
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- property_get -i 18 -n "$DEVSENSE_EVAL_CACHE['75ef9047fff03c3832ead7631007200316fc72b2acf46112976aaa6ccebed5cd']" -c 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- context_names -i 19 -d 0
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- context_get -i 20 -d 0 -c 0
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_remove -i 21 -d 240074
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[24] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[49] Log opened at 2024-06-03 12:36:56.271570
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- run -i 12
+[49] [Step Debug] ->
+
+[49] [Step Debug] ->
+
+[33] Log opened at 2024-06-03 12:37:06.347562
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- run -i 12
+[33] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[24] [Step Debug] <- step_over -i 23
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- stack_get -i 24
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- eval -i 25 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNzVlZjkwNDdmZmYwM2MzODMyZWFkNzYzMTAwNzIwMDMxNmZjNzJiMmFjZjQ2MTEyOTc2YWFhNmNjZWJlZDVjZCddPSR0aGlzLT5yZXF1ZXN0LT5nZXRQb3N0KCk=
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- property_get -i 26 -n "$DEVSENSE_EVAL_CACHE['75ef9047fff03c3832ead7631007200316fc72b2acf46112976aaa6ccebed5cd']" -c 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- context_names -i 27 -d 0
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- context_get -i 28 -d 0 -c 0
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- context_names -i 29 -d 0
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- property_get -i 30 -n "$_FILES" -c 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- context_get -i 31 -d 0 -c 0
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- run -i 32
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-06-03 12:37:25.788854
+
+[49] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[49] Log closed at 2024-06-03 12:37:26.514238
+
+[33] Log closed at 2024-06-03 12:37:26.514666
+
+[46] Log opened at 2024-06-03 12:37:26.625169
+[33] Log opened at 2024-06-03 12:37:26.625211
+[48] Log opened at 2024-06-03 12:37:26.625259
+[42] Log opened at 2024-06-03 12:37:26.625284
+[30] Log opened at 2024-06-03 12:37:26.625254
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[34] Log opened at 2024-06-03 12:37:26.625285
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[42] [Step Debug] ->
+
+[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[33] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[46] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[30] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[30] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[42] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[30] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[42] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[46] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[30] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[42] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[48] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[46] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[42] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[34] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[33] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[46] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[46] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[46] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[42] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[46] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[34] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[30] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[42] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[46] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[30] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[46] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[33] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[33] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[30] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[46] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[30] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[46] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[42] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[33] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[33] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[30] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[42] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[46] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[46] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[30] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[33] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[30] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[33] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[42] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[30] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[46] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[30] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[46] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[33] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[30] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[42] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[30] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[42] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[33] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[33] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[46] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[30] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[42] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[33] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[42] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[46] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[30] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[42] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[42] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[46] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[33] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[46] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[33] [Step Debug] <- run -i 27
+[46] [Step Debug] <- run -i 27
+[30] [Step Debug] <- run -i 27
+[34] [Step Debug] <- run -i 27
+[48] [Step Debug] <- run -i 27
+[42] [Step Debug] <- run -i 27
+[33] [Step Debug] ->
+
+[33] Log closed at 2024-06-03 12:37:27.593235
+
+[33] Log opened at 2024-06-03 12:37:27.599205
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- run -i 12
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-06-03 12:37:27.893666
+
+[48] Log opened at 2024-06-03 12:37:27.898664
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- run -i 12
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-06-03 12:37:28.180894
+
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:37:28.193099
+
+[30] [Step Debug] ->
+
+[30] Log closed at 2024-06-03 12:37:28.564922
+
+[46] [Step Debug] ->
+
+[46] Log closed at 2024-06-03 12:37:28.912457
+
+[42] [Step Debug] ->
+
+[42] Log closed at 2024-06-03 12:37:29.272505
+
+[33] [Step Debug] ->
+
+[33] Log closed at 2024-06-03 12:37:29.376225
+
+[46] Log opened at 2024-06-03 12:37:29.419359
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- run -i 12
+[46] [Step Debug] ->
+
+[46] Log closed at 2024-06-03 12:37:30.033588
+
+[24] Log opened at 2024-06-03 12:38:06.498641
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- run -i 12
+[24] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-06-03 12:38:09.156263
+
+[49] Log opened at 2024-06-03 12:38:09.260972
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- run -i 12
+[24] Log opened at 2024-06-03 12:38:09.389527
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[48] Log opened at 2024-06-03 12:38:09.393491
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[50] Log opened at 2024-06-03 12:38:09.393743
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] ->
+
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] ->
+
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] ->
+
+[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[48] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[50] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[24] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[24] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[50] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[48] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error"
+[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[48] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[48] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[48] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[50] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- feature_set -i 10 -n notify_ok -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1
+[48] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Error"
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error"
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error"
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error"
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 8 -n max_children -v 100
+[30] Log opened at 2024-06-03 12:38:09.410318
+[50] [Step Debug] ->
+
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[50] [Step Debug] <- feature_set -i 9 -n max_data -v 8192
+[50] [Step Debug] ->
+
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[50] [Step Debug] <- feature_set -i 10 -n notify_ok -v 1
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[50] [Step Debug] ->
+
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1
+[50] [Step Debug] ->
+
+[34] Log opened at 2024-06-03 12:38:09.412558
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] ->
+
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[30] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[24] [Step Debug] <- run -i 12
+[48] [Step Debug] <- run -i 12
+[50] [Step Debug] <- run -i 12
+[30] [Step Debug] <- run -i 5
+[34] [Step Debug] <- run -i 5
+[49] [Step Debug] ->
+
+[49] Log closed at 2024-06-03 12:38:09.695677
+
+[49] Log opened at 2024-06-03 12:38:09.701380
+[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
+[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[49] [Step Debug] ->
+
+[49] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[49] [Step Debug] ->
+
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[30] [Step Debug] ->
+
+[30] Log closed at 2024-06-03 12:38:10.175932
+
+[30] Log opened at 2024-06-03 12:38:10.180775
+[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
+[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[30] [Step Debug] ->
+
+[30] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[30] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-06-03 12:38:10.412991
+
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-06-03 12:38:10.546170
+
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:38:10.702563
+
+[50] [Step Debug] ->
+
+[50] Log closed at 2024-06-03 12:38:11.096734
+
+[49] [Step Debug] <- stop -i 12
+[30] [Step Debug] <- stop -i 12
+[30] [Step Debug] ->
+
+[49] [Step Debug] ->
+
+[46] Log opened at 2024-06-03 12:38:30.736456
+[33] Log opened at 2024-06-03 12:38:30.736448
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] Log closed at 2024-06-03 12:38:31.410980
+
+[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[46] [Step Debug] ->
+
+[46] [Step Debug] <- run -i 12
+[46] [Step Debug] ->
+
+[46] Log closed at 2024-06-03 12:38:32.026126
+
+[33] Log opened at 2024-06-03 12:38:32.062131
+[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
+[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[33] [Step Debug] ->
+
+[33] [Step Debug] <- run -i 12
+[33] [Step Debug] ->
+
+[33] Log closed at 2024-06-03 12:38:32.690020
+
+[44] Log opened at 2024-06-03 12:38:38.277300
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- run -i 12
+[44] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- stack_get -i 13
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- property_get -i 14 -n "$_FILES" -c 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- context_names -i 15 -d 0
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- context_get -i 16 -d 0 -c 0
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- step_over -i 17
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- stack_get -i 18
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- property_get -i 19 -n "$_FILES" -c 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- context_names -i 20 -d 0
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- context_get -i 21 -d 0 -c 0
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- run -i 22
+[44] [Step Debug] ->
+
+[44] Log closed at 2024-06-03 12:38:54.833691
+
+[51] Log opened at 2024-06-03 12:42:35.746390
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- run -i 12
+[51] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[51] Log closed at 2024-06-03 12:42:38.418469
+
+[51] Log opened at 2024-06-03 12:42:38.544175
+[24] Log opened at 2024-06-03 12:42:38.544216
+[48] Log opened at 2024-06-03 12:42:38.544207
+[42] Log opened at 2024-06-03 12:42:38.544191
+[34] Log opened at 2024-06-03 12:42:38.544180
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[50] Log opened at 2024-06-03 12:42:38.545221
+[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[24] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[48] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[42] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[51] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[50] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[50] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[48] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[50] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[42] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[51] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[50] [Step Debug] ->
+
+[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[42] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[51] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[42] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[50] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[42] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[50] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[42] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[50] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[48] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[51] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[48] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[51] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[50] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[42] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[48] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[50] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[42] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[50] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[42] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[50] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[50] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[42] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[24] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[50] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[24] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[50] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[50] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[42] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[24] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[42] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[50] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[42] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[50] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[24] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] ->
+
+[42] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[42] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[24] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[42] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[42] [Step Debug] ->
+
+[24] [Step Debug] <- run -i 25
+[42] [Step Debug] <- run -i 25
+[50] [Step Debug] <- run -i 25
+[34] [Step Debug] <- run -i 25
+[51] [Step Debug] <- run -i 23
+[48] [Step Debug] <- run -i 25
+[51] [Step Debug] ->
+
+[51] Log closed at 2024-06-03 12:42:39.605517
+
+[51] Log opened at 2024-06-03 12:42:39.611260
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- run -i 12
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-06-03 12:42:39.912109
+
+[24] Log opened at 2024-06-03 12:42:39.916483
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- run -i 12
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-06-03 12:42:40.204351
+
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:42:40.227022
+
+[42] [Step Debug] ->
+
+[42] Log closed at 2024-06-03 12:42:40.649706
+
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-06-03 12:42:41.022006
+
+[50] [Step Debug] ->
+
+[50] Log closed at 2024-06-03 12:42:41.363247
+
+[51] [Step Debug] ->
+
+[51] Log closed at 2024-06-03 12:42:41.475531
+
+[50] Log opened at 2024-06-03 12:42:41.493102
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- run -i 12
+[50] [Step Debug] ->
+
+[50] Log closed at 2024-06-03 12:42:42.119322
+
+[50] Log opened at 2024-06-03 12:42:45.279741
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- run -i 12
+[50] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- stack_get -i 13
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- property_get -i 14 -n "$_FILES" -c 1
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- context_names -i 15 -d 0
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- context_get -i 16 -d 0 -c 0
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- context_names -i 17 -d 0
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- property_get -i 18 -n "$_FILES" -c 1
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- context_get -i 19 -d 0 -c 0
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- context_names -i 20 -d 0
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- property_get -i 21 -n "$_FILES" -c 1
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- eval -i 22 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYWU0Y2E0YzVhODI3NTE3Yjg0ODM0ZDhhZTcxNjM3NTc1OTM3NzZmNzEwNDU5MTc1YTZlMTgzZGQ0MzIxZjVlNSddPSRyZXF1ZXN0LT5maWxlcygp
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- context_get -i 23 -d 0 -c 0
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- context_names -i 24 -d 0
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- property_get -i 25 -n "$_FILES" -c 1
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- eval -i 26 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYWU0Y2E0YzVhODI3NTE3Yjg0ODM0ZDhhZTcxNjM3NTc1OTM3NzZmNzEwNDU5MTc1YTZlMTgzZGQ0MzIxZjVlNSddPSRyZXF1ZXN0LT5maWxlcygp
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- eval -i 27 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMDc4OWZmOWZkNzg0YzQwY2RkNmNmZGQ4YWIyYzEwMTI5ZDM2MjM5OTQ2NTk5OWViZTc4NWFmNGExMTNiM2E4MiddPSRyZXF1ZXN0LT5hbGwoKQ==
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- context_get -i 28 -d 0 -c 0
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- context_names -i 29 -d 0
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- property_get -i 30 -n "$_FILES" -c 1
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- eval -i 31 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNzViZTI2YTdlZDA2ZWIxY2EyYzFkZjU4ZWMxNDJkYTQzOTI4MjBlZWE3NGQ4OGU0NDc2YTE1YzUwYzg2ODBlNCddPSR0aGlzLT5yZXF1ZXN0LT5maWxlcygp
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- eval -i 32 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMDc4OWZmOWZkNzg0YzQwY2RkNmNmZGQ4YWIyYzEwMTI5ZDM2MjM5OTQ2NTk5OWViZTc4NWFmNGExMTNiM2E4MiddPSRyZXF1ZXN0LT5hbGwoKQ==
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- context_get -i 33 -d 0 -c 0
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- context_names -i 34 -d 0
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- property_get -i 35 -n "$_FILES" -c 1
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- property_get -i 36 -n "$this->request" -d 0 -c 0
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- eval -i 37 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMDc4OWZmOWZkNzg0YzQwY2RkNmNmZGQ4YWIyYzEwMTI5ZDM2MjM5OTQ2NTk5OWViZTc4NWFmNGExMTNiM2E4MiddPSRyZXF1ZXN0LT5hbGwoKQ==
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- context_get -i 38 -d 0 -c 0
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- run -i 39
+[50] [Step Debug] ->
+
+[50] Log closed at 2024-06-03 12:44:54.443355
+
+[44] Log opened at 2024-06-03 12:45:59.894323
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- run -i 12
+[44] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[44] Log closed at 2024-06-03 12:46:02.410248
+
+[24] Log opened at 2024-06-03 12:46:02.510896
+[34] Log opened at 2024-06-03 12:46:02.510909
+[44] Log opened at 2024-06-03 12:46:02.510915
+[53] Log opened at 2024-06-03 12:46:02.510902
+[54] Log opened at 2024-06-03 12:46:02.510888
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[52] Log opened at 2024-06-03 12:46:02.512003
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52'
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ->
+
+[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[52] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[44] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[53] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[54] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[24] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[52] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[54] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[52] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[53] [Step Debug] ->
+
+[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[54] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[54] [Step Debug] ->
+
+[52] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[53] [Step Debug] ->
+
+[54] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[54] [Step Debug] ->
+
+[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[52] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[54] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[52] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[52] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[52] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[52] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[52] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[44] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[53] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[44] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[52] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[54] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[53] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[24] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[54] [Step Debug] ->
+
+[52] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[53] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[52] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[54] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[52] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[53] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[54] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[52] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[52] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[53] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[44] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[52] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[54] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[52] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[52] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[24] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[54] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[52] [Step Debug] ->
+
+[52] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[52] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[52] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[52] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[52] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[24] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[54] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[44] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[53] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[52] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[52] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[24] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[54] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[44] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] ->
+
+[52] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[52] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[52] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[52] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[24] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[44] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[54] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[53] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[52] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[24] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[54] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[52] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[52] [Step Debug] ->
+
+[52] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] ->
+
+[52] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[52] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] ->
+
+[52] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[52] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[52] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[24] [Step Debug] <- run -i 23
+[34] [Step Debug] <- run -i 22
+[44] [Step Debug] <- run -i 21
+[54] [Step Debug] <- run -i 23
+[53] [Step Debug] <- run -i 22
+[52] [Step Debug] <- run -i 23
+[44] [Step Debug] ->
+
+[44] Log closed at 2024-06-03 12:46:03.525474
+
+[44] Log opened at 2024-06-03 12:46:03.531759
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- run -i 12
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:46:03.834558
+
+[34] Log opened at 2024-06-03 12:46:03.838926
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 12
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:46:04.142358
+
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-06-03 12:46:04.159068
+
+[52] [Step Debug] ->
+
+[52] Log closed at 2024-06-03 12:46:04.563137
+
+[53] [Step Debug] ->
+
+[53] Log closed at 2024-06-03 12:46:04.904648
+
+[54] [Step Debug] ->
+
+[54] Log closed at 2024-06-03 12:46:05.285395
+
+[44] [Step Debug] ->
+
+[44] Log closed at 2024-06-03 12:46:05.384667
+
+[54] Log opened at 2024-06-03 12:46:05.418838
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- run -i 12
+[54] [Step Debug] ->
+
+[54] Log closed at 2024-06-03 12:46:06.077913
+
+[48] Log opened at 2024-06-03 12:46:11.634278
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- run -i 12
+[48] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-06-03 12:46:14.031163
+
+[48] Log opened at 2024-06-03 12:46:14.135625
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] Log opened at 2024-06-03 12:46:14.137522
+[51] Log opened at 2024-06-03 12:46:14.137561
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[50] Log opened at 2024-06-03 12:46:14.137621
+[55] Log opened at 2024-06-03 12:46:14.137777
+[24] Log opened at 2024-06-03 12:46:14.137899
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] ->
+
+[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[55] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[50] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[50] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[51] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[24] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[55] [Step Debug] ->
+
+[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[55] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[50] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[55] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[51] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[55] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[55] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[51] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[55] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[50] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[24] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[50] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[24] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[48] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[24] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[50] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[55] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[51] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[55] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[55] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[24] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[55] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[55] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[55] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[51] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[55] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[55] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1
+[51] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[24] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[55] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[24] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[50] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[55] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[24] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[50] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[55] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[55] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[24] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[50] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[50] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[24] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[55] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[50] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[55] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[24] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[50] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[55] [Step Debug] ->
+
+[55] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[50] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[50] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[55] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[55] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[24] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[50] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[55] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[50] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[55] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[55] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[55] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[55] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[55] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[55] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[48] [Step Debug] <- run -i 23
+[34] [Step Debug] <- run -i 24
+[24] [Step Debug] <- run -i 22
+[51] [Step Debug] <- run -i 24
+[55] [Step Debug] <- run -i 24
+[50] [Step Debug] <- run -i 22
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-06-03 12:46:14.456485
+
+[48] Log opened at 2024-06-03 12:46:14.462836
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- run -i 12
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:46:15.048268
+
+[34] Log opened at 2024-06-03 12:46:15.053860
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 12
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-06-03 12:46:15.184909
+
+[50] [Step Debug] ->
+
+[50] Log closed at 2024-06-03 12:46:15.338153
+
+[51] [Step Debug] ->
+
+[51] Log closed at 2024-06-03 12:46:15.842190
+
+[55] [Step Debug] ->
+
+[55] Log closed at 2024-06-03 12:46:16.192524
+
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-06-03 12:46:16.299749
+
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:46:16.421853
+
+[24] Log opened at 2024-06-03 12:46:16.446592
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[24] [Step Debug] ->
+
+[24] [Step Debug] <- run -i 12
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-06-03 12:46:17.073147
+
+[53] Log opened at 2024-06-03 12:46:39.407780
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- run -i 12
+[53] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[53] Log closed at 2024-06-03 12:46:41.683529
+
+[53] Log opened at 2024-06-03 12:46:41.769157
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[54] Log opened at 2024-06-03 12:46:41.770868
+[44] Log opened at 2024-06-03 12:46:41.770821
+[50] Log opened at 2024-06-03 12:46:41.771051
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[51] Log opened at 2024-06-03 12:46:41.771556
+[56] Log opened at 2024-06-03 12:46:41.771465
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[53] [Step Debug] ->
+
+[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] ->
+
+[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[53] [Step Debug] ->
+
+[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ->
+
+[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[53] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[51] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[54] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[44] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[50] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[54] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[50] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[44] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[51] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[54] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[56] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[50] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[56] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[54] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[44] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[50] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[50] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[56] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[56] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[44] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[50] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error"
+[54] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[51] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[51] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[44] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[50] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[51] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[54] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[44] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1
+[50] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[44] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1
+[51] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[50] [Step Debug] <- feature_set -i 10 -n notify_ok -v 1
+[54] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[56] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error"
+[54] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[54] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[56] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[54] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[53] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1
+[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[54] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1
+[56] [Step Debug] ->
+
+[50] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- feature_set -i 10 -n notify_ok -v 1
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1
+[56] [Step Debug] ->
+
+[53] [Step Debug] <- run -i 12
+[44] [Step Debug] <- run -i 12
+[50] [Step Debug] <- run -i 12
+[51] [Step Debug] <- run -i 12
+[56] [Step Debug] <- run -i 12
+[54] [Step Debug] <- run -i 12
+[53] [Step Debug] ->
+
+[53] Log closed at 2024-06-03 12:46:42.256686
+
+[53] Log opened at 2024-06-03 12:46:42.263542
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- run -i 12
+[50] [Step Debug] ->
+
+[50] Log closed at 2024-06-03 12:46:42.565132
+
+[50] Log opened at 2024-06-03 12:46:42.571031
+[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
+[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[50] [Step Debug] ->
+
+[50] [Step Debug] <- run -i 12
+[44] [Step Debug] ->
+
+[44] Log closed at 2024-06-03 12:46:42.881149
+
+[51] [Step Debug] ->
+
+[51] Log closed at 2024-06-03 12:46:43.013385
+
+[54] [Step Debug] ->
+
+[54] Log closed at 2024-06-03 12:46:43.332052
+
+[56] [Step Debug] ->
+
+[56] Log closed at 2024-06-03 12:46:43.676397
+
+[53] [Step Debug] ->
+
+[53] Log closed at 2024-06-03 12:46:43.784655
+
+[50] [Step Debug] ->
+
+[50] Log closed at 2024-06-03 12:46:43.905751
+
+[51] Log opened at 2024-06-03 12:46:43.927380
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- run -i 12
+[51] [Step Debug] ->
+
+[51] Log closed at 2024-06-03 12:46:44.576402
+
+[51] Log opened at 2024-06-03 12:46:47.316892
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- run -i 12
+[51] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[51] Log closed at 2024-06-03 12:46:49.714279
+
+[51] Log opened at 2024-06-03 12:46:49.806952
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[55] Log opened at 2024-06-03 12:46:49.807968
+[48] Log opened at 2024-06-03 12:46:49.807980
+[34] Log opened at 2024-06-03 12:46:49.807933
+[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[24] Log opened at 2024-06-03 12:46:49.808151
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[57] Log opened at 2024-06-03 12:46:49.808955
+[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[51] [Step Debug] ->
+
+[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[24] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[51] [Step Debug] ->
+
+[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[24] [Step Debug] ->
+
+[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[55] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[55] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[48] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[51] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[55] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[57] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] ->
+
+[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[24] [Step Debug] ->
+
+[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[55] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[57] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[57] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[55] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[55] [Step Debug] ->
+
+[55] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[55] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[55] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[55] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[34] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[55] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[55] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[55] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[48] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[51] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[55] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[48] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[24] [Step Debug] ->
+
+[55] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[57] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[24] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error"
+[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[57] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[57] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[34] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[57] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[55] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 10 -n notify_ok -v 1
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[57] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[55] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[55] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[55] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[24] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[24] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[24] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[55] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[55] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[24] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[55] [Step Debug] ->
+
+[55] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[24] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[57] [Step Debug] ->
+
+[55] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[24] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[55] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[55] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[24] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] ->
+
+[55] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[24] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[55] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[24] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] ->
+
+[24] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 23 -n resolved_breakpoints -v 1
+[57] [Step Debug] ->
+
+[51] [Step Debug] <- run -i 24
+[34] [Step Debug] <- run -i 23
+[55] [Step Debug] <- run -i 23
+[48] [Step Debug] <- run -i 24
+[24] [Step Debug] <- run -i 24
+[57] [Step Debug] <- run -i 24
+[51] [Step Debug] ->
+
+[51] Log closed at 2024-06-03 12:46:50.138543
+
+[51] Log opened at 2024-06-03 12:46:50.144047
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- run -i 12
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:46:50.637784
+
+[34] Log opened at 2024-06-03 12:46:50.643533
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 12
+[55] [Step Debug] ->
+
+[55] Log closed at 2024-06-03 12:46:50.940699
+
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-06-03 12:46:51.059113
+
+[24] [Step Debug] ->
+
+[24] Log closed at 2024-06-03 12:46:51.409431
+
+[57] [Step Debug] ->
+
+[57] Log closed at 2024-06-03 12:46:51.775508
+
+[51] [Step Debug] ->
+
+[51] Log closed at 2024-06-03 12:46:51.902831
+
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:46:52.023981
+
+[51] Log opened at 2024-06-03 12:46:52.054794
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- run -i 12
+[51] [Step Debug] ->
+
+[51] Log closed at 2024-06-03 12:46:52.685630
+
+[44] Log opened at 2024-06-03 12:47:12.498664
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- run -i 12
+[44] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[44] Log closed at 2024-06-03 12:47:14.101122
+
+[48] Log opened at 2024-06-03 12:47:14.193830
+[44] Log opened at 2024-06-03 12:47:14.193872
+[53] Log opened at 2024-06-03 12:47:14.193882
+[55] Log opened at 2024-06-03 12:47:14.193904
+[54] Log opened at 2024-06-03 12:47:14.193943
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[56] Log opened at 2024-06-03 12:47:14.195474
+[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[44] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[53] [Step Debug] ->
+
+[54] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[55] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[54] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[56] [Step Debug] ->
+
+[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[53] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[54] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[55] [Step Debug] ->
+
+[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[48] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[44] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[53] [Step Debug] ->
+
+[54] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[55] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[44] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[53] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[56] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[54] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[48] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[54] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[55] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[56] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[56] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[55] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[56] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[55] [Step Debug] ->
+
+[55] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[55] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[56] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[55] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[56] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[54] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[55] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[56] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[53] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[54] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[44] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[55] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[56] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[54] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[55] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[53] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[53] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[56] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[55] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[54] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[55] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[56] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[54] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[55] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[53] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[53] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[54] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[55] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[56] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[54] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[55] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[54] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[53] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[55] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[56] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[55] [Step Debug] ->
+
+[55] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[44] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[54] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[56] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[55] [Step Debug] ->
+
+[55] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[56] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[55] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[44] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[55] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[54] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[44] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[56] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[55] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[56] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[55] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[55] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] ->
+
+[44] [Step Debug] <- run -i 24
+[48] [Step Debug] <- run -i 24
+[54] [Step Debug] <- run -i 27
+[53] [Step Debug] <- run -i 24
+[55] [Step Debug] <- run -i 24
+[56] [Step Debug] <- run -i 24
+[44] [Step Debug] ->
+
+[44] Log closed at 2024-06-03 12:47:15.002872
+
+[44] Log opened at 2024-06-03 12:47:15.008148
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- run -i 12
+[54] [Step Debug] ->
+
+[54] Log closed at 2024-06-03 12:47:15.097883
+
+[54] Log opened at 2024-06-03 12:47:15.101630
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- run -i 12
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-06-03 12:47:15.210382
+
+[53] [Step Debug] ->
+
+[53] Log closed at 2024-06-03 12:47:15.322417
+
+[54] [Step Debug] ->
+
+[54] Log closed at 2024-06-03 12:47:15.412089
+
+[55] [Step Debug] ->
+
+[55] Log closed at 2024-06-03 12:47:15.433240
+
+[56] [Step Debug] ->
+
+[56] Log closed at 2024-06-03 12:47:15.548763
+
+[44] [Step Debug] ->
+
+[44] Log closed at 2024-06-03 12:47:15.799915
+
+[44] Log opened at 2024-06-03 12:47:15.833897
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- run -i 12
+[44] [Step Debug] ->
+
+[44] Log closed at 2024-06-03 12:47:16.439722
+
+[57] Log opened at 2024-06-03 12:47:31.832910
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- run -i 12
+[57] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[57] Log closed at 2024-06-03 12:47:33.836724
+
+[54] Log opened at 2024-06-03 12:47:33.932437
+[57] Log opened at 2024-06-03 12:47:33.932447
+[48] Log opened at 2024-06-03 12:47:33.932698
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[34] Log opened at 2024-06-03 12:47:33.932687
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[58] Log opened at 2024-06-03 12:47:33.933279
+[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58'
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[51] Log opened at 2024-06-03 12:47:33.933828
+[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] ->
+
+[58] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[57] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[58] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[57] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[54] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[48] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[54] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[51] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[58] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[58] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[51] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[58] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[58] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[54] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[57] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[48] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[58] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[58] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[54] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[54] [Step Debug] ->
+
+[58] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[58] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[57] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[54] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[58] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[54] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[58] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[57] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[51] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[58] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[54] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[57] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[57] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[57] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[54] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[57] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[54] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[48] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[57] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[54] [Step Debug] ->
+
+[58] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[58] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[48] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[58] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[58] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[48] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[58] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[54] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[58] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[54] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[58] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[34] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[58] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[48] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] ->
+
+[58] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] ->
+
+[58] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[57] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[58] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[58] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[54] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[58] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] ->
+
+[58] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[54] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[57] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[58] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[58] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[54] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[58] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[58] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[58] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[58] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[54] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[58] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[58] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[58] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[54] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[58] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[58] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[54] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[58] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[58] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[58] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[54] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[58] [Step Debug] ->
+
+[58] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[58] [Step Debug] ->
+
+[58] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[58] [Step Debug] ->
+
+[58] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[58] [Step Debug] ->
+
+[58] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[58] [Step Debug] ->
+
+[58] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] ->
+
+[58] [Step Debug] ->
+
+[48] [Step Debug] <- run -i 24
+[34] [Step Debug] <- run -i 24
+[57] [Step Debug] <- run -i 24
+[51] [Step Debug] <- run -i 25
+[58] [Step Debug] <- run -i 26
+[54] [Step Debug] <- run -i 25
+[57] [Step Debug] ->
+
+[57] Log closed at 2024-06-03 12:47:34.763906
+
+[57] Log opened at 2024-06-03 12:47:34.769609
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- run -i 12
+[54] [Step Debug] ->
+
+[54] Log closed at 2024-06-03 12:47:34.867269
+
+[54] Log opened at 2024-06-03 12:47:34.871541
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- run -i 12
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-06-03 12:47:34.982657
+
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:47:35.089559
+
+[54] [Step Debug] ->
+
+[54] Log closed at 2024-06-03 12:47:35.190359
+
+[58] [Step Debug] ->
+
+[58] Log closed at 2024-06-03 12:47:35.457090
+
+[51] [Step Debug] ->
+
+[51] Log closed at 2024-06-03 12:47:35.865042
+
+[57] [Step Debug] ->
+
+[57] Log closed at 2024-06-03 12:47:35.993656
+
+[51] Log opened at 2024-06-03 12:47:36.013554
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- run -i 12
+[51] [Step Debug] ->
+
+[51] Log closed at 2024-06-03 12:47:36.693329
+
+[56] Log opened at 2024-06-03 12:48:10.922763
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- run -i 12
+[56] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[56] Log closed at 2024-06-03 12:48:12.939706
+
+[56] Log opened at 2024-06-03 12:48:13.026892
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[53] Log opened at 2024-06-03 12:48:13.028323
+[44] Log opened at 2024-06-03 12:48:13.028301
+[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] Log opened at 2024-06-03 12:48:13.028332
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[59] Log opened at 2024-06-03 12:48:13.028456
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] Log opened at 2024-06-03 12:48:13.028980
+[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[56] [Step Debug] ->
+
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[56] [Step Debug] ->
+
+[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[56] [Step Debug] ->
+
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[59] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[48] [Step Debug] ->
+
+[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[53] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[59] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[59] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[48] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[44] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[48] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[53] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[59] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[53] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[56] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[44] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[56] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[44] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[56] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[59] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[56] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[56] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[56] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[56] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1
+[56] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[53] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[59] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[44] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[59] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[56] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[44] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[59] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[53] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[44] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[59] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[59] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[56] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[44] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[44] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[56] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[53] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[44] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[56] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[59] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[44] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[56] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[59] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[44] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[53] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[59] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[44] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[56] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[59] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[44] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[59] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[56] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[56] [Step Debug] <- run -i 24
+[44] [Step Debug] <- run -i 24
+[48] [Step Debug] <- run -i 24
+[53] [Step Debug] <- run -i 20
+[59] [Step Debug] <- run -i 24
+[34] [Step Debug] <- run -i 24
+[56] [Step Debug] ->
+
+[56] Log closed at 2024-06-03 12:48:13.359356
+
+[56] Log opened at 2024-06-03 12:48:13.365032
+[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
+[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[56] [Step Debug] ->
+
+[56] [Step Debug] <- run -i 12
+[53] [Step Debug] ->
+
+[53] Log closed at 2024-06-03 12:48:13.941953
+
+[53] Log opened at 2024-06-03 12:48:13.947087
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- run -i 12
+[44] [Step Debug] ->
+
+[44] Log closed at 2024-06-03 12:48:14.258285
+
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:48:14.562167
+
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-06-03 12:48:14.909478
+
+[59] [Step Debug] ->
+
+[59] Log closed at 2024-06-03 12:48:15.525475
+
+[56] [Step Debug] ->
+
+[56] Log closed at 2024-06-03 12:48:15.668226
+
+[53] [Step Debug] ->
+
+[53] Log closed at 2024-06-03 12:48:15.789243
+
+[34] Log opened at 2024-06-03 12:48:15.837597
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 12
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:48:16.465382
+
+[34] Log opened at 2024-06-03 12:48:17.262956
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 12
+[34] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- stack_get -i 13
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 14
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:48:20.737543
+
+[54] Log opened at 2024-06-03 12:48:24.918255
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[34] Log opened at 2024-06-03 12:48:24.918703
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[54] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[54] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[54] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[54] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[54] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[54] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[54] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[34] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[54] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[54] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[54] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 15
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- run -i 15
+[34] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- stack_get -i 16
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- property_get -i 17 -n "$_FILES" -c 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- property_get -i 18 -n "$this->request" -d 0 -c 0
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- eval -i 19 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMDc4OWZmOWZkNzg0YzQwY2RkNmNmZGQ4YWIyYzEwMTI5ZDM2MjM5OTQ2NTk5OWViZTc4NWFmNGExMTNiM2E4MiddPSRyZXF1ZXN0LT5hbGwoKQ==
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- context_names -i 20 -d 0
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- context_get -i 21 -d 0 -c 0
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 22
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:48:36.044001
+
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- stack_get -i 16
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- property_get -i 17 -n "$_FILES" -c 1
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- property_get -i 18 -n "$this->request" -d 0 -c 0
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- eval -i 19 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMDc4OWZmOWZkNzg0YzQwY2RkNmNmZGQ4YWIyYzEwMTI5ZDM2MjM5OTQ2NTk5OWViZTc4NWFmNGExMTNiM2E4MiddPSRyZXF1ZXN0LT5hbGwoKQ==
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- context_names -i 20 -d 0
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- context_get -i 21 -d 0 -c 0
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- run -i 22
+[54] [Step Debug] ->
+
+[54] Log closed at 2024-06-03 12:48:37.932262
+
+[57] Log opened at 2024-06-03 12:50:47.402744
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- run -i 12
+[57] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[57] Log closed at 2024-06-03 12:50:49.967886
+
+[57] Log opened at 2024-06-03 12:50:50.048614
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[48] Log opened at 2024-06-03 12:50:50.048828
+[59] Log opened at 2024-06-03 12:50:50.048854
+[44] Log opened at 2024-06-03 12:50:50.048837
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
+[60] Log opened at 2024-06-03 12:50:50.048993
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[51] Log opened at 2024-06-03 12:50:50.049496
+[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] ->
+
+[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[57] [Step Debug] ->
+
+[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[59] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[57] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[44] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[59] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[48] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[60] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[57] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[60] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[59] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[44] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[60] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[48] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[57] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[44] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[51] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[59] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[60] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[59] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[60] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[60] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[59] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[57] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[60] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[57] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[44] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[59] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[60] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[59] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[48] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[60] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[51] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[44] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[59] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[59] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[44] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[60] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[59] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[57] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[57] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[59] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[44] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[57] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[59] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[60] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[44] [Step Debug] ->
+
+[44] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[59] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[44] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[59] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[44] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[60] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[57] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[59] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[44] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[44] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[44] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[57] [Step Debug] <- run -i 24
+[48] [Step Debug] <- run -i 24
+[60] [Step Debug] <- run -i 24
+[59] [Step Debug] <- run -i 24
+[51] [Step Debug] <- run -i 24
+[44] [Step Debug] <- run -i 24
+[57] [Step Debug] ->
+
+[57] Log closed at 2024-06-03 12:50:51.112438
+
+[57] Log opened at 2024-06-03 12:50:51.118091
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- run -i 12
+[51] [Step Debug] ->
+
+[51] Log closed at 2024-06-03 12:50:51.419502
+
+[51] Log opened at 2024-06-03 12:50:51.423256
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- run -i 12
+[51] [Step Debug] ->
+
+[51] Log closed at 2024-06-03 12:50:51.709194
+
+[60] [Step Debug] ->
+
+[60] Log closed at 2024-06-03 12:50:51.735352
+
+[44] [Step Debug] ->
+
+[44] Log closed at 2024-06-03 12:50:52.122160
+
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-06-03 12:50:52.502764
+
+[59] [Step Debug] ->
+
+[59] Log closed at 2024-06-03 12:50:52.840521
+
+[57] [Step Debug] ->
+
+[57] Log closed at 2024-06-03 12:50:52.958431
+
+[48] Log opened at 2024-06-03 12:50:52.984297
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- run -i 12
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-06-03 12:50:53.632911
+
+[48] Log opened at 2024-06-03 12:50:57.038889
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- run -i 12
+[48] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- stack_get -i 13
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- property_get -i 14 -n "$_FILES" -c 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- property_get -i 15 -n "$this->request" -d 0 -c 0
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMDc4OWZmOWZkNzg0YzQwY2RkNmNmZGQ4YWIyYzEwMTI5ZDM2MjM5OTQ2NTk5OWViZTc4NWFmNGExMTNiM2E4MiddPSRyZXF1ZXN0LT5hbGwoKQ==
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- context_names -i 17 -d 0
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- context_get -i 18 -d 0 -c 0
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- run -i 19
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-06-03 12:51:13.533544
+
+[53] Log opened at 2024-06-03 12:53:53.094093
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- run -i 11
+[53] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[53] Log closed at 2024-06-03 12:53:55.725243
+
+[53] Log opened at 2024-06-03 12:53:55.833559
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[34] Log opened at 2024-06-03 12:53:55.833528
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[54] Log opened at 2024-06-03 12:53:55.834971
+[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[51] Log opened at 2024-06-03 12:53:55.836116
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[61] Log opened at 2024-06-03 12:53:55.836386
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] ->
+
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] ->
+
+[60] Log opened at 2024-06-03 12:53:55.837915
+[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] ->
+
+[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[54] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[54] [Step Debug] ->
+
+[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[53] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] ->
+
+[54] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[54] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ->
+
+[54] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[61] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[54] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[51] [Step Debug] ->
+
+[54] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[61] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[51] [Step Debug] ->
+
+[54] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[54] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[61] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[53] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error"
+[60] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error"
+[61] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error"
+[53] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[61] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[60] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error"
+[51] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[53] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[61] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error"
+[60] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error"
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[51] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[60] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error"
+[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error"
+[51] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[60] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1
+[60] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1
+[61] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1
+[61] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[61] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[51] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[54] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[51] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[61] [Step Debug] <- feature_set -i 12 -n resolved_breakpoints -v 1
+[54] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 12 -n resolved_breakpoints -v 1
+[54] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] ->
+
+[53] [Step Debug] <- run -i 13
+[51] [Step Debug] <- run -i 13
+[61] [Step Debug] <- run -i 13
+[54] [Step Debug] <- run -i 14
+[34] [Step Debug] <- run -i 13
+[60] [Step Debug] <- run -i 13
+[60] [Step Debug] ->
+
+[60] Log closed at 2024-06-03 12:53:56.214898
+
+[60] Log opened at 2024-06-03 12:53:56.220747
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- run -i 11
+[53] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[53] Log closed at 2024-06-03 12:53:56.867257
+
+[53] Log opened at 2024-06-03 12:53:56.873530
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- run -i 11
+[51] [Step Debug] ->
+
+[51] Log closed at 2024-06-03 12:53:57.211826
+
+[51] Log opened at 2024-06-03 12:53:57.216848
+[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51'
+[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[51] [Step Debug] ->
+
+[51] [Step Debug] <- run -i 11
+[61] [Step Debug] ->
+
+[61] Log closed at 2024-06-03 12:53:57.516994
+
+[61] Log opened at 2024-06-03 12:53:57.522648
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- run -i 11
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:53:57.870840
+
+[54] [Step Debug] ->
+
+[54] Log closed at 2024-06-03 12:53:58.385043
+
+[60] [Step Debug] ->
+
+[60] Log closed at 2024-06-03 12:53:58.728692
+
+[53] [Step Debug] ->
+
+[53] Log closed at 2024-06-03 12:53:58.833697
+
+[51] [Step Debug] ->
+
+[51] Log closed at 2024-06-03 12:53:58.934354
+
+[61] [Step Debug] ->
+
+[61] Log closed at 2024-06-03 12:53:59.041827
+
+[54] Log opened at 2024-06-03 12:53:59.067259
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- run -i 11
+[54] [Step Debug] ->
+
+[54] Log closed at 2024-06-03 12:53:59.710476
+
+[57] Log opened at 2024-06-03 12:54:19.815535
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- run -i 11
+[57] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[57] Log closed at 2024-06-03 12:54:22.404348
+
+[57] Log opened at 2024-06-03 12:54:22.503112
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[60] Log opened at 2024-06-03 12:54:22.504414
+[34] Log opened at 2024-06-03 12:54:22.504260
+[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[62] Log opened at 2024-06-03 12:54:22.504532
+[48] Log opened at 2024-06-03 12:54:22.504441
+[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62'
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[53] Log opened at 2024-06-03 12:54:22.505137
+[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[57] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[60] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[62] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[48] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[62] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[57] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[60] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[62] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[53] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[48] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[57] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[53] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[60] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[57] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[57] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[60] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[57] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[60] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[57] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[34] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[48] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[62] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[62] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[57] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[62] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[57] [Step Debug] <- run -i 17
+[60] [Step Debug] <- run -i 17
+[48] [Step Debug] <- run -i 17
+[53] [Step Debug] <- run -i 17
+[62] [Step Debug] <- run -i 17
+[34] [Step Debug] <- run -i 17
+[57] [Step Debug] ->
+
+[57] Log closed at 2024-06-03 12:54:22.815098
+
+[57] Log opened at 2024-06-03 12:54:22.821240
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- run -i 11
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:54:23.294006
+
+[34] Log opened at 2024-06-03 12:54:23.300934
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 11
+[53] [Step Debug] ->
+
+[53] Log closed at 2024-06-03 12:54:23.419981
+
+[60] [Step Debug] ->
+
+[60] Log closed at 2024-06-03 12:54:23.538710
+
+[62] [Step Debug] ->
+
+[62] Log closed at 2024-06-03 12:54:23.866728
+
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-06-03 12:54:24.431166
+
+[57] [Step Debug] ->
+
+[57] Log closed at 2024-06-03 12:54:24.535100
+
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 12:54:24.642742
+
+[53] Log opened at 2024-06-03 12:54:24.672294
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- run -i 11
+[53] [Step Debug] ->
+
+[53] Log closed at 2024-06-03 12:54:25.288821
+
+[53] Log opened at 2024-06-03 12:54:27.671472
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- run -i 11
+[53] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[53] Log closed at 2024-06-03 12:54:29.192953
+
+[61] Log opened at 2024-06-03 12:54:53.059260
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[54] Log opened at 2024-06-03 12:54:53.059720
+[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54'
+[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[54] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[54] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[61] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[54] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[61] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[61] [Step Debug] ->
+
+[54] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[54] [Step Debug] ->
+
+[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[54] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[61] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[54] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[61] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[61] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[61] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[61] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[54] [Step Debug] ->
+
+[61] [Step Debug] <- run -i 15
+[54] [Step Debug] <- run -i 15
+[61] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[54] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- stack_get -i 16
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- property_get -i 17 -n "$_FILES" -c 1
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- property_get -i 18 -n "$this->request" -d 0 -c 0
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- eval -i 19 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMDc4OWZmOWZkNzg0YzQwY2RkNmNmZGQ4YWIyYzEwMTI5ZDM2MjM5OTQ2NTk5OWViZTc4NWFmNGExMTNiM2E4MiddPSRyZXF1ZXN0LT5hbGwoKQ==
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- context_names -i 20 -d 0
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- context_get -i 21 -d 0 -c 0
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- context_names -i 22 -d 0
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- property_get -i 23 -n "$_FILES" -c 1
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- property_get -i 24 -n "$this->request->files" -d 0 -c 0
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- eval -i 25 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMDc4OWZmOWZkNzg0YzQwY2RkNmNmZGQ4YWIyYzEwMTI5ZDM2MjM5OTQ2NTk5OWViZTc4NWFmNGExMTNiM2E4MiddPSRyZXF1ZXN0LT5hbGwoKQ==
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- context_get -i 26 -d 0 -c 0
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- context_names -i 27 -d 0
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- property_get -i 28 -n "$_FILES" -c 1
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- property_get -i 29 -n "$this->request" -d 0 -c 0
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- eval -i 30 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMDc4OWZmOWZkNzg0YzQwY2RkNmNmZGQ4YWIyYzEwMTI5ZDM2MjM5OTQ2NTk5OWViZTc4NWFmNGExMTNiM2E4MiddPSRyZXF1ZXN0LT5hbGwoKQ==
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- context_get -i 31 -d 0 -c 0
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- property_get -i 32 -n "$this->request->validLocales" -p 0 -d 0 -c 0
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- run -i 33
+[61] [Step Debug] ->
+
+[61] Log closed at 2024-06-03 12:55:28.673561
+
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- stack_get -i 16
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- property_get -i 17 -n "$_FILES" -c 1
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- property_get -i 18 -n "$this->request" -d 0 -c 0
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- eval -i 19 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMDc4OWZmOWZkNzg0YzQwY2RkNmNmZGQ4YWIyYzEwMTI5ZDM2MjM5OTQ2NTk5OWViZTc4NWFmNGExMTNiM2E4MiddPSRyZXF1ZXN0LT5hbGwoKQ==
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- context_names -i 20 -d 0
+[54] [Step Debug] ->
+
+[54] [Step Debug] <- context_get -i 21 -d 0 -c 0
+[54] [Step Debug] ->
+
+[59] Log opened at 2024-06-03 12:55:30.808336
+[61] Log opened at 2024-06-03 12:55:30.808324
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[63] Log opened at 2024-06-03 12:55:30.808890
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] ->
+
+[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[61] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[63] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[63] [Step Debug] ->
+
+[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[59] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[59] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[63] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[63] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[61] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[63] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[59] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[61] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[63] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[61] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[63] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[63] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[63] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[59] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[63] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[63] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[59] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[61] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[59] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[59] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[63] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[61] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[61] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[59] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[59] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[59] [Step Debug] <- run -i 18
+[61] [Step Debug] <- run -i 18
+[63] [Step Debug] <- run -i 18
+[61] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[54] [Step Debug] <- run -i 22
+[54] [Step Debug] ->
+
+[54] Log closed at 2024-06-03 12:55:37.114976
+
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- stack_get -i 19
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- property_get -i 20 -n "$_FILES" -c 1
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- property_get -i 21 -n "$this->request" -d 0 -c 0
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- eval -i 22 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMDc4OWZmOWZkNzg0YzQwY2RkNmNmZGQ4YWIyYzEwMTI5ZDM2MjM5OTQ2NTk5OWViZTc4NWFmNGExMTNiM2E4MiddPSRyZXF1ZXN0LT5hbGwoKQ==
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- context_names -i 23 -d 0
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- context_get -i 24 -d 0 -c 0
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- run -i 25
+[61] [Step Debug] ->
+
+[61] Log closed at 2024-06-03 12:55:37.820589
+
+[59] [Step Debug] ->
+
+[59] [Step Debug] <- stack_get -i 19
+[59] [Step Debug] ->
+
+[59] [Step Debug] <- property_get -i 20 -n "$_FILES" -c 1
+[59] [Step Debug] ->
+
+[59] [Step Debug] <- property_get -i 21 -n "$this->request" -d 0 -c 0
+[59] [Step Debug] ->
+
+[59] [Step Debug] <- eval -i 22 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMDc4OWZmOWZkNzg0YzQwY2RkNmNmZGQ4YWIyYzEwMTI5ZDM2MjM5OTQ2NTk5OWViZTc4NWFmNGExMTNiM2E4MiddPSRyZXF1ZXN0LT5hbGwoKQ==
+[59] [Step Debug] ->
+
+[59] [Step Debug] <- context_names -i 23 -d 0
+[59] [Step Debug] ->
+
+[59] [Step Debug] <- context_get -i 24 -d 0 -c 0
+[59] [Step Debug] ->
+
+[59] [Step Debug] <- run -i 25
+[59] [Step Debug] ->
+
+[59] Log closed at 2024-06-03 12:55:38.705951
+
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- stack_get -i 19
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- property_get -i 20 -n "$_FILES" -c 1
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- property_get -i 21 -n "$this->request" -d 0 -c 0
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- eval -i 22 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMDc4OWZmOWZkNzg0YzQwY2RkNmNmZGQ4YWIyYzEwMTI5ZDM2MjM5OTQ2NTk5OWViZTc4NWFmNGExMTNiM2E4MiddPSRyZXF1ZXN0LT5hbGwoKQ==
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- context_names -i 23 -d 0
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- context_get -i 24 -d 0 -c 0
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- run -i 25
+[63] [Step Debug] ->
+
+[63] Log closed at 2024-06-03 12:55:39.564993
+
+[34] Log opened at 2024-06-03 13:01:25.585295
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 12
+[34] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 13:01:28.161759
+
+[48] Log opened at 2024-06-03 13:01:28.268382
+[60] Log opened at 2024-06-03 13:01:28.268459
+[34] Log opened at 2024-06-03 13:01:28.268497
+[57] Log opened at 2024-06-03 13:01:28.268449
+[62] Log opened at 2024-06-03 13:01:28.268604
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62'
+[53] Log opened at 2024-06-03 13:01:28.268509
+[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[57] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[57] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[60] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[57] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[60] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[62] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[48] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[53] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[60] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[57] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[62] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[57] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[53] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[57] [Step Debug] ->
+
+[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[62] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[53] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[57] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[60] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[34] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[60] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[57] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[53] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[57] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[60] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[57] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[62] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[53] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[60] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[57] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[53] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[57] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[48] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[57] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[53] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[62] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[53] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[60] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[62] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[53] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[62] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[53] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[53] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[53] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[53] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 21
+[48] [Step Debug] <- run -i 21
+[57] [Step Debug] <- run -i 21
+[53] [Step Debug] <- run -i 21
+[60] [Step Debug] <- run -i 21
+[62] [Step Debug] <- run -i 18
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 13:01:29.258020
+
+[34] Log opened at 2024-06-03 13:01:29.263292
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 12
+[60] [Step Debug] ->
+
+[60] Log closed at 2024-06-03 13:01:29.555335
+
+[60] Log opened at 2024-06-03 13:01:29.559367
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- run -i 12
+[60] [Step Debug] ->
+
+[60] Log closed at 2024-06-03 13:01:29.873103
+
+[62] [Step Debug] ->
+
+[62] Log closed at 2024-06-03 13:01:29.886044
+
+[53] [Step Debug] ->
+
+[53] Log closed at 2024-06-03 13:01:30.314739
+
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-06-03 13:01:30.678383
+
+[57] [Step Debug] ->
+
+[57] Log closed at 2024-06-03 13:01:31.028442
+
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 13:01:31.130898
+
+[57] Log opened at 2024-06-03 13:01:31.158195
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- run -i 12
+[57] [Step Debug] ->
+
+[57] Log closed at 2024-06-03 13:01:31.787019
+
+[61] Log opened at 2024-06-03 13:04:13.227427
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- run -i 12
+[61] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[61] Log closed at 2024-06-03 13:04:15.733039
+
+[60] Log opened at 2024-06-03 13:04:15.837159
+[62] Log opened at 2024-06-03 13:04:15.837167
+[61] Log opened at 2024-06-03 13:04:15.837187
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62'
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[63] Log opened at 2024-06-03 13:04:15.837180
+[59] Log opened at 2024-06-03 13:04:15.837193
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[64] Log opened at 2024-06-03 13:04:15.839136
+[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64'
+[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[59] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] ->
+
+[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[59] [Step Debug] ->
+
+[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[64] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[61] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[62] [Step Debug] ->
+
+[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[61] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[59] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[64] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[61] [Step Debug] ->
+
+[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[62] [Step Debug] ->
+
+[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[59] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[60] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[62] [Step Debug] ->
+
+[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[64] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[59] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[60] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[64] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[61] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[64] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[59] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[61] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[64] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[64] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[61] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[61] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[64] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[63] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[59] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[60] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[62] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[64] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[63] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[59] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[60] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[62] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[64] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[60] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[59] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[62] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[62] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[64] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[63] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[60] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[60] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[63] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[59] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[59] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[63] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[61] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[64] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[61] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[63] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[64] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[60] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[64] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[59] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[63] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[64] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[64] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[61] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[63] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[62] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[64] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[61] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[60] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[64] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[64] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[59] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[64] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[64] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[63] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[60] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[61] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[60] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[63] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[64] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[59] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[63] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[64] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[59] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[64] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[61] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[63] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[64] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[61] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[64] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- run -i 25
+[63] [Step Debug] <- run -i 25
+[64] [Step Debug] <- run -i 25
+[62] [Step Debug] <- run -i 25
+[59] [Step Debug] <- run -i 25
+[61] [Step Debug] <- run -i 25
+[61] [Step Debug] ->
+
+[61] Log closed at 2024-06-03 13:04:16.802713
+
+[61] Log opened at 2024-06-03 13:04:16.807978
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- run -i 12
+[60] [Step Debug] ->
+
+[60] Log closed at 2024-06-03 13:04:17.105850
+
+[60] Log opened at 2024-06-03 13:04:17.110211
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- run -i 12
+[60] [Step Debug] ->
+
+[60] Log closed at 2024-06-03 13:04:17.409849
+
+[64] [Step Debug] ->
+
+[64] Log closed at 2024-06-03 13:04:17.427091
+
+[63] [Step Debug] ->
+
+[63] Log closed at 2024-06-03 13:04:17.819585
+
+[59] [Step Debug] ->
+
+[59] Log closed at 2024-06-03 13:04:18.197832
+
+[62] [Step Debug] ->
+
+[62] Log closed at 2024-06-03 13:04:18.555577
+
+[61] [Step Debug] ->
+
+[61] Log closed at 2024-06-03 13:04:18.659383
+
+[62] Log opened at 2024-06-03 13:04:18.691077
+[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62'
+[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- run -i 12
+[62] [Step Debug] ->
+
+[62] Log closed at 2024-06-03 13:04:19.316718
+
+[48] Log opened at 2024-06-03 13:29:43.342010
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- run -i 12
+[48] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-06-03 13:29:45.918520
+
+[48] Log opened at 2024-06-03 13:29:46.065162
+[64] Log opened at 2024-06-03 13:29:46.065184
+[60] Log opened at 2024-06-03 13:29:46.065204
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[34] Log opened at 2024-06-03 13:29:46.065241
+[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64'
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[57] Log opened at 2024-06-03 13:29:46.065545
+[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57'
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[65] Log opened at 2024-06-03 13:29:46.067034
+[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[57] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[57] [Step Debug] ->
+
+[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[60] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[48] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[60] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[57] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[64] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[57] [Step Debug] ->
+
+[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[65] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[48] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[57] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[65] [Step Debug] ->
+
+[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[64] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[65] [Step Debug] ->
+
+[57] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[60] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[48] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[65] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[65] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[64] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[57] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[65] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[65] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[64] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[48] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[60] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[57] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[48] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[57] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[48] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[57] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[65] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[57] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[65] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[57] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[64] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[65] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[57] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[65] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[57] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[65] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[48] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[65] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[64] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[65] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[65] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[64] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[60] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[64] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[65] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[60] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[64] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[57] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[65] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[64] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[64] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[57] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[60] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[57] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[65] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[64] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[64] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[57] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[60] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[64] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[64] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[57] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[57] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[65] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[64] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[65] [Step Debug] ->
+
+[57] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[64] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- run -i 24
+[48] [Step Debug] <- run -i 24
+[64] [Step Debug] <- run -i 24
+[57] [Step Debug] <- run -i 24
+[34] [Step Debug] <- run -i 24
+[65] [Step Debug] <- run -i 24
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-06-03 13:29:47.034887
+
+[48] Log opened at 2024-06-03 13:29:47.041179
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- run -i 12
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 13:29:47.338556
+
+[34] Log opened at 2024-06-03 13:29:47.342872
+[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
+[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[34] [Step Debug] ->
+
+[34] [Step Debug] <- run -i 12
+[34] [Step Debug] ->
+
+[34] Log closed at 2024-06-03 13:29:47.658712
+
+[57] [Step Debug] ->
+
+[57] Log closed at 2024-06-03 13:29:47.677651
+
+[64] [Step Debug] ->
+
+[64] Log closed at 2024-06-03 13:29:48.114849
+
+[65] [Step Debug] ->
+
+[65] Log closed at 2024-06-03 13:29:48.520036
+
+[60] [Step Debug] ->
+
+[60] Log closed at 2024-06-03 13:29:48.868971
+
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-06-03 13:29:48.988622
+
+[65] Log opened at 2024-06-03 13:29:49.011945
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- run -i 12
+[65] [Step Debug] ->
+
+[65] Log closed at 2024-06-03 13:29:49.676328
+
+[65] Log opened at 2024-06-03 13:29:52.614100
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- run -i 12
+[65] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[65] Log closed at 2024-06-03 13:29:55.039340
+
+[65] Log opened at 2024-06-03 13:29:55.292772
+[59] Log opened at 2024-06-03 13:29:55.292780
+[63] Log opened at 2024-06-03 13:29:55.292940
+[61] Log opened at 2024-06-03 13:29:55.292874
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[62] Log opened at 2024-06-03 13:29:55.293437
+[66] Log opened at 2024-06-03 13:29:55.293249
+[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62'
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[65] [Step Debug] ->
+
+[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[61] [Step Debug] ->
+
+[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[65] [Step Debug] ->
+
+[66] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[63] [Step Debug] ->
+
+[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[61] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[59] [Step Debug] ->
+
+[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[66] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[63] [Step Debug] ->
+
+[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[62] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[62] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[65] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[59] [Step Debug] ->
+
+[66] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[66] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[62] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[59] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[66] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[66] [Step Debug] ->
+
+[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[62] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[63] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[59] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[66] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[65] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[65] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[66] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[63] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[66] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[66] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[65] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[61] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[65] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[66] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[65] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[63] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[61] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[66] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[65] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[63] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[61] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[62] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[66] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[65] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[63] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[61] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[62] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[66] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[63] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[62] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[61] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[66] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[65] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[66] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[59] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[63] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[65] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[61] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[66] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[59] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[59] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[62] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[63] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[61] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[65] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[59] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[59] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[59] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[59] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[66] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[65] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[63] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[66] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[61] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[63] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[61] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[61] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[59] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[63] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[66] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[59] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[65] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[63] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[61] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[66] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[63] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] ->
+
+[61] [Step Debug] <- run -i 21
+[65] [Step Debug] <- run -i 21
+[62] [Step Debug] <- run -i 21
+[59] [Step Debug] <- run -i 23
+[63] [Step Debug] <- run -i 21
+[66] [Step Debug] <- run -i 21
+[65] [Step Debug] ->
+
+[65] Log closed at 2024-06-03 13:29:56.298689
+
+[65] Log opened at 2024-06-03 13:29:56.304124
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- run -i 12
+[63] [Step Debug] ->
+
+[63] Log closed at 2024-06-03 13:29:56.608408
+
+[63] Log opened at 2024-06-03 13:29:56.612587
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- run -i 12
+[63] [Step Debug] ->
+
+[63] Log closed at 2024-06-03 13:29:56.941497
+
+[62] [Step Debug] ->
+
+[62] Log closed at 2024-06-03 13:29:56.964360
+
+[61] [Step Debug] ->
+
+[61] Log closed at 2024-06-03 13:29:57.345435
+
+[66] [Step Debug] ->
+
+[66] Log closed at 2024-06-03 13:29:57.719086
+
+[59] [Step Debug] ->
+
+[59] Log closed at 2024-06-03 13:29:58.066861
+
+[65] [Step Debug] ->
+
+[65] Log closed at 2024-06-03 13:29:58.168976
+
+[65] Log opened at 2024-06-03 13:29:58.215354
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- run -i 12
+[65] [Step Debug] ->
+
+[65] Log closed at 2024-06-03 13:29:58.836054
+
+[64] Log opened at 2024-06-03 13:31:42.246422
+[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64'
+[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[64] [Step Debug] ->
+
+[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[64] [Step Debug] ->
+
+[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[64] [Step Debug] ->
+
+[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[64] [Step Debug] ->
+
+[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[64] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[64] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[64] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[64] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[64] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[64] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[64] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[64] [Step Debug] ->
+
+[64] [Step Debug] <- run -i 12
+[64] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[64] Log closed at 2024-06-03 13:31:44.150681
+
+[48] Log opened at 2024-06-03 13:31:44.429108
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[61] Log opened at 2024-06-03 13:31:44.429394
+[64] Log opened at 2024-06-03 13:31:44.429454
+[63] Log opened at 2024-06-03 13:31:44.429457
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[60] Log opened at 2024-06-03 13:31:44.429543
+[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64'
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[62] Log opened at 2024-06-03 13:31:44.430833
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62'
+[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[64] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] ->
+
+[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[64] [Step Debug] ->
+
+[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[64] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[60] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[48] [Step Debug] ->
+
+[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[63] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[48] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[62] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[62] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[63] [Step Debug] ->
+
+[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[61] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[64] [Step Debug] ->
+
+[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[62] [Step Debug] ->
+
+[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[63] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[61] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[48] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[64] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[60] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[63] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[64] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[63] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[64] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[61] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[60] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[62] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[61] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[64] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[60] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[61] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[61] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[60] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[64] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[63] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[61] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[60] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[64] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[63] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[61] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[62] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[60] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[64] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[62] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[64] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[63] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[63] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[64] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[61] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[48] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[62] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[63] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[64] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[63] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[61] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[64] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[63] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[64] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[61] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[61] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[64] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[63] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[64] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[63] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[61] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[60] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[64] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[64] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[61] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[61] [Step Debug] <- run -i 23
+[60] [Step Debug] <- run -i 23
+[48] [Step Debug] <- run -i 27
+[62] [Step Debug] <- run -i 23
+[63] [Step Debug] <- run -i 23
+[64] [Step Debug] <- run -i 23
+[60] [Step Debug] ->
+
+[60] Log closed at 2024-06-03 13:31:45.267699
+
+[60] Log opened at 2024-06-03 13:31:45.273374
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- run -i 12
+[62] [Step Debug] ->
+
+[62] Log closed at 2024-06-03 13:31:45.386538
+
+[62] Log opened at 2024-06-03 13:31:45.390551
+[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62'
+[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[62] [Step Debug] ->
+
+[62] [Step Debug] <- run -i 12
+[63] [Step Debug] ->
+
+[63] Log closed at 2024-06-03 13:31:45.515069
+
+[61] [Step Debug] ->
+
+[61] Log closed at 2024-06-03 13:31:45.629904
+
+[62] [Step Debug] ->
+
+[62] Log closed at 2024-06-03 13:31:45.716161
+
+[64] [Step Debug] ->
+
+[64] Log closed at 2024-06-03 13:31:45.927651
+
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-06-03 13:31:46.330792
+
+[60] [Step Debug] ->
+
+[60] Log closed at 2024-06-03 13:31:46.433758
+
+[60] Log opened at 2024-06-03 13:31:46.492945
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[60] [Step Debug] ->
+
+[60] [Step Debug] <- run -i 12
+[60] [Step Debug] ->
+
+[60] Log closed at 2024-06-03 13:31:47.282730
+
+[67] Log opened at 2024-06-03 13:32:56.785126
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[67] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- run -i 12
+[67] [Step Debug] ->
+
+[67] [Step Debug] ->
+
+[67] [Step Debug] ->
+
+[67] Log closed at 2024-06-03 13:32:59.272394
+
+[59] Log opened at 2024-06-03 13:32:59.411815
+[61] Log opened at 2024-06-03 13:32:59.411830
+[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59'
+[67] Log opened at 2024-06-03 13:32:59.411905
+[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61'
+[66] Log opened at 2024-06-03 13:32:59.411894
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[65] Log opened at 2024-06-03 13:32:59.412267
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[62] Log opened at 2024-06-03 13:32:59.413298
+[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62'
+[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[66] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] ->
+
+[67] [Step Debug] ->
+
+[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[59] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[62] [Step Debug] ->
+
+[66] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[67] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[66] [Step Debug] ->
+
+[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[67] [Step Debug] ->
+
+[66] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[61] [Step Debug] ->
+
+[67] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[66] [Step Debug] ->
+
+[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[67] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[59] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[66] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[67] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[62] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[67] [Step Debug] ->
+
+[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[61] [Step Debug] ->
+
+[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[59] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[65] [Step Debug] ->
+
+[67] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[62] [Step Debug] ->
+
+[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[67] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[66] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[66] [Step Debug] ->
+
+[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[59] [Step Debug] ->
+
+[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[65] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[66] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[61] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[59] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[67] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[66] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[59] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[65] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[67] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[66] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[67] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[59] [Step Debug] ->
+
+[67] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[67] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[67] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[62] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[67] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[61] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[62] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[59] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[61] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[62] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[61] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[66] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[59] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[59] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[61] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[62] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[59] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[59] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[61] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[62] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[66] [Step Debug] ->
+
+[67] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[59] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[67] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[66] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[67] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[61] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[67] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[65] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[59] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[59] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[61] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[67] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[66] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[67] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[65] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[66] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[65] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[67] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[65] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[67] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[65] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[59] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[62] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[65] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[66] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[66] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[67] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[67] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[59] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[67] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[67] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[59] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[61] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[62] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[67] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[67] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[65] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[66] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[59] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[67] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[65] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[67] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[67] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[59] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[62] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[67] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[65] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[66] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[65] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[67] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[67] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[62] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[66] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[65] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[67] [Step Debug] ->
+
+[62] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[61] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[59] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[66] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[67] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[65] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[67] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[61] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[65] [Step Debug] ->
+
+[61] [Step Debug] ->
+
+[67] [Step Debug] ->
+
+[66] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[67] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[66] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[62] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[59] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[61] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[67] [Step Debug] ->
+
+[61] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[59] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[62] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[65] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[61] [Step Debug] ->
+
+[62] [Step Debug] ->
+
+[59] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[59] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[65] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[66] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[59] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[65] [Step Debug] ->
+
+[67] [Step Debug] <- run -i 27
+[66] [Step Debug] <- run -i 27
+[65] [Step Debug] <- run -i 27
+[61] [Step Debug] <- run -i 27
+[59] [Step Debug] <- run -i 27
+[62] [Step Debug] <- run -i 27
+[67] [Step Debug] ->
+
+[67] Log closed at 2024-06-03 13:33:00.390823
+
+[67] Log opened at 2024-06-03 13:33:00.396709
+[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67'
+[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[67] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[67] [Step Debug] ->
+
+[67] [Step Debug] <- run -i 12
+[66] [Step Debug] ->
+
+[66] Log closed at 2024-06-03 13:33:00.700370
+
+[66] Log opened at 2024-06-03 13:33:00.704642
+[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66'
+[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[66] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[66] [Step Debug] ->
+
+[66] [Step Debug] <- run -i 12
+[66] [Step Debug] ->
+
+[66] Log closed at 2024-06-03 13:33:00.989329
+
+[65] [Step Debug] ->
+
+[65] Log closed at 2024-06-03 13:33:01.009848
+
+[62] [Step Debug] ->
+
+[62] Log closed at 2024-06-03 13:33:01.405332
+
+[61] [Step Debug] ->
+
+[61] Log closed at 2024-06-03 13:33:01.771414
+
+[59] [Step Debug] ->
+
+[59] Log closed at 2024-06-03 13:33:02.107855
+
+[67] [Step Debug] ->
+
+[67] Log closed at 2024-06-03 13:33:02.232525
+
+[65] Log opened at 2024-06-03 13:33:02.249991
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- run -i 12
+[65] [Step Debug] ->
+
+[65] Log closed at 2024-06-03 13:33:02.917456
+
+[65] Log opened at 2024-06-03 13:33:06.195211
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- run -i 12
+[65] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[65] Log closed at 2024-06-03 13:33:08.704352
+
+[60] Log opened at 2024-06-03 13:33:08.807040
+[65] Log opened at 2024-06-03 13:33:08.807004
+[48] Log opened at 2024-06-03 13:33:08.807014
+[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60'
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[63] Log opened at 2024-06-03 13:33:08.807845
+[64] Log opened at 2024-06-03 13:33:08.807832
+[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64'
+[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63'
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[68] Log opened at 2024-06-03 13:33:08.808427
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68'
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[63] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[48] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[68] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[64] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[68] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[65] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[48] [Step Debug] ->
+
+[68] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[68] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[68] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[60] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[63] [Step Debug] ->
+
+[68] [Step Debug] ->
+
+[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[48] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[60] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[65] [Step Debug] ->
+
+[68] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[68] [Step Debug] ->
+
+[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[63] [Step Debug] ->
+
+[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[68] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[64] [Step Debug] ->
+
+[68] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[60] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[63] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[68] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[64] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[63] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[64] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[65] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[64] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[68] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[68] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[63] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[64] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[65] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[65] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[65] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[65] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[68] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[48] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[48] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[68] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[65] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[60] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[64] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[64] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[60] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[63] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[64] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[60] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[63] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[64] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[63] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[63] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[64] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[63] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[64] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[64] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[64] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[68] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[63] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[68] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[65] [Step Debug] ->
+
+[68] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[68] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[60] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[65] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[63] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[64] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[68] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[68] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[64] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[68] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[68] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[65] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[64] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[68] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[68] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[63] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[64] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[64] [Step Debug] ->
+
+[68] [Step Debug] ->
+
+[65] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[65] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[63] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[63] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[63] [Step Debug] ->
+
+[68] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[68] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[64] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- run -i 20
+[64] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[60] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[63] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[63] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] ->
+
+[64] [Step Debug] ->
+
+[48] [Step Debug] ->
+
+[68] [Step Debug] ->
+
+[60] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[64] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[68] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] <- run -i 22
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[63] [Step Debug] ->
+
+[68] [Step Debug] ->
+
+[60] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[63] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[60] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[64] [Step Debug] ->
+
+[64] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[60] [Step Debug] ->
+
+[68] [Step Debug] ->
+
+[63] [Step Debug] ->
+
+[60] [Step Debug] <- run -i 24
+[63] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[68] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[64] [Step Debug] ->
+
+[64] [Step Debug] <- run -i 24
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[63] [Step Debug] ->
+
+[63] [Step Debug] <- run -i 25
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[68] [Step Debug] ->
+
+[68] [Step Debug] <- run -i 25
+[65] [Step Debug] ->
+
+[65] Log closed at 2024-06-03 13:33:09.556492
+
+[65] Log opened at 2024-06-03 13:33:09.562017
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- run -i 12
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-06-03 13:33:09.653719
+
+[48] Log opened at 2024-06-03 13:33:09.657429
+[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48'
+[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[48] [Step Debug] ->
+
+[48] [Step Debug] <- run -i 12
+[48] [Step Debug] ->
+
+[48] Log closed at 2024-06-03 13:33:09.962730
+
+[60] [Step Debug] ->
+
+[60] Log closed at 2024-06-03 13:33:09.971604
+
+[63] [Step Debug] ->
+
+[63] Log closed at 2024-06-03 13:33:10.346015
+
+[64] [Step Debug] ->
+
+[64] Log closed at 2024-06-03 13:33:10.668827
+
+[68] [Step Debug] ->
+
+[68] Log closed at 2024-06-03 13:33:11.006041
+
+[65] [Step Debug] ->
+
+[65] Log closed at 2024-06-03 13:33:11.106730
+
+[65] Log opened at 2024-06-03 13:33:11.180883
+[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65'
+[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'.
+[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'.
+[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'.
+[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003.
+[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29).
+[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003.
+[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port).
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 802
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1497
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestoencuadernaciones.php -n 144
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[65] [Step Debug] ->
+
+[65] [Step Debug] <- run -i 12
+[65] [Step Debug] ->
+
+[65] Log closed at 2024-06-03 13:33:11.765764
+