diff --git a/ci4/app/Config/Routes.php b/ci4/app/Config/Routes.php
index a9baa5bc..9a7700d2 100644
--- a/ci4/app/Config/Routes.php
+++ b/ci4/app/Config/Routes.php
@@ -791,6 +791,14 @@ $routes->group('chat', ['namespace' => 'App\Controllers\Chat'], function ($route
});
+
+$routes->group('produccion', ['namespace' => 'App\Controllers\Produccion'], function ($routes) {
+ $routes->group('ordentrabajo', ['namespace' => 'App\Controllers\Produccion'], function ($routes) {
+ $routes->get('', 'Ordentrabajo::index', ['as' => 'viewOrdenTrabajoIndex']);
+ $routes->get('edit/$1', 'Ordentrabajo::edit/$1', ['as' => 'viewOrdenTrabajoEdit']);
+
+ });
+});
/*
* --------------------------------------------------------------------
* APIs Route Definitions
diff --git a/ci4/app/Controllers/Produccion/Ordentrabajo.php b/ci4/app/Controllers/Produccion/Ordentrabajo.php
index 63fe7ca2..5c2a147d 100755
--- a/ci4/app/Controllers/Produccion/Ordentrabajo.php
+++ b/ci4/app/Controllers/Produccion/Ordentrabajo.php
@@ -2,18 +2,34 @@
namespace App\Controllers\Produccion;
use App\Controllers\BaseController;
-
+use CodeIgniter\HTTP\RequestInterface;
+use CodeIgniter\HTTP\ResponseInterface;
+use Psr\Log\LoggerInterface;
class Ordentrabajo extends BaseController
{
- function __construct()
- {
-
+ protected $format = 'json';
+ protected array $viewData = [];
+
+
+ protected static $viewPath = 'themes/vuexy/form/produccion/';
+ protected static $controllerSlug = "orden-trabajo";
+ protected $indexRoute = 'viewOrdenTrabajoList';
+ protected $editRoute = 'viewOrdenTrabajoEdit';
+
+ public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
+ {
+ parent::initController($request, $response, $logger);
}
public function index()
{
- echo 'Orden trabajo';
+ // Breadcrumbs
+ $this->viewData['breadcrumb'] = [
+ ['title' => lang("App.orden_trabajo"), 'route' => "javascript:void(0);", 'active' => false],
+ ['title' => "Table", 'route' => site_url('produccion/ordentrabajo'), 'active' => true]
+ ];
+ return view(static::$viewPath . $this->indexRoute, $this->viewData);
}
public function delete()
@@ -26,9 +42,14 @@ class Ordentrabajo extends BaseController
}
- public function edit()
+ public function edit($orden_trabajo_id)
{
-
+ // Breadcrumbs
+ $this->viewData['breadcrumb'] = [
+ ['title' => lang("App.orden_trabajo"), 'route' => "javascript:void(0);", 'active' => false],
+ ['title' => "Table", 'route' => site_url('produccion/ordentrabajo'), 'active' => true]
+ ];
+ return view(static::$viewPath . $this->editRoute, $this->viewData);
}
public function cien()
diff --git a/ci4/app/Views/themes/vuexy/form/produccion/ot/otComments.php b/ci4/app/Views/themes/vuexy/form/produccion/ot/otComments.php
new file mode 100644
index 00000000..1337d806
--- /dev/null
+++ b/ci4/app/Views/themes/vuexy/form/produccion/ot/otComments.php
@@ -0,0 +1,5 @@
+
+
+ = @lang("ot.comment") ?>
+
+
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/form/produccion/ot/otCosts.php b/ci4/app/Views/themes/vuexy/form/produccion/ot/otCosts.php
new file mode 100644
index 00000000..c6d7826b
--- /dev/null
+++ b/ci4/app/Views/themes/vuexy/form/produccion/ot/otCosts.php
@@ -0,0 +1,18 @@
+
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/form/produccion/ot/otDates.php b/ci4/app/Views/themes/vuexy/form/produccion/ot/otDates.php
new file mode 100644
index 00000000..d913cfb7
--- /dev/null
+++ b/ci4/app/Views/themes/vuexy/form/produccion/ot/otDates.php
@@ -0,0 +1,47 @@
+
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/form/produccion/ot/otDetails.php b/ci4/app/Views/themes/vuexy/form/produccion/ot/otDetails.php
new file mode 100644
index 00000000..f26f8b6f
--- /dev/null
+++ b/ci4/app/Views/themes/vuexy/form/produccion/ot/otDetails.php
@@ -0,0 +1,42 @@
+
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/form/produccion/ot/otFerrosEnvios.php b/ci4/app/Views/themes/vuexy/form/produccion/ot/otFerrosEnvios.php
new file mode 100644
index 00000000..4a38ec45
--- /dev/null
+++ b/ci4/app/Views/themes/vuexy/form/produccion/ot/otFerrosEnvios.php
@@ -0,0 +1,77 @@
+
+
+
+ Gestión de ferros
+
+
Indica si tiene ferro y las horas de entrega del mismo. Se le enviará un mensaje a comercial asociado indicando cuando estará disponible el ferro.
+
+
+
+
+ Gestión de envíos
+
+ Sin ferro
+ 24h
+ 48h
+
+
+
+
+
+ CP
+
+
+
+ Código seguimiento
+
+
+
+ Empresa envío
+
+
+
+
+
+
+
+
+
+ Confirmar envío ferro
+
+
+
+
+
+
+
+ Gestión de envíos
+
+
Introduce el número de seguimiento de envío. Se le enviará un mensaje al cliente asociado indicando el envío y el tracking.
+
+
+
+
+ CP
+
+
+
+ N bultos
+
+
+
+ Empresa envío
+
+
+
+
+
+
+
+
+
+ Etiqueda proveedor
+
+
+ Confirmar envío
+
+
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/form/produccion/ot/otPreimpresionReview.php b/ci4/app/Views/themes/vuexy/form/produccion/ot/otPreimpresionReview.php
new file mode 100644
index 00000000..36cd24bc
--- /dev/null
+++ b/ci4/app/Views/themes/vuexy/form/produccion/ot/otPreimpresionReview.php
@@ -0,0 +1,121 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Enviar a imprimir
+
+
+
+
+
+
+
+ Avisar comercial
+
+
Enviar un mensaje al comercial indicando que faltan materiales.
+ La orden se marcará y aparecerá en el listado: OTs pendientes de material
+
+
+
+ Mensaje al comercial
+
+
+
+ Avisar comercial
+
+
+
+
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/form/produccion/ot/otProgress.php b/ci4/app/Views/themes/vuexy/form/produccion/ot/otProgress.php
new file mode 100644
index 00000000..507d7740
--- /dev/null
+++ b/ci4/app/Views/themes/vuexy/form/produccion/ot/otProgress.php
@@ -0,0 +1,95 @@
+
+
+
+
+
+
+
+
+
=@lang("App.progress") ?>
+
+
+
+
+
+
+
= @lang("ot.tiempo_estimado") ?> :
+
+
+
= @lang("ot.tiempo_consumido") ?> :
+
+
+
+
+
+ =@lang("ot.finalizar_orden")?>
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/form/produccion/ot/otTask.php b/ci4/app/Views/themes/vuexy/form/produccion/ot/otTask.php
new file mode 100644
index 00000000..4a29abbc
--- /dev/null
+++ b/ci4/app/Views/themes/vuexy/form/produccion/ot/otTask.php
@@ -0,0 +1,62 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ = view("themes/vuexy/form/produccion/ot/otPreimpresionReview") ?>
+
+
+
+
+
+ = view("themes/vuexy/form/produccion/ot/otFerrosEnvios") ?>
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/form/produccion/viewOrdenTrabajoEdit.php b/ci4/app/Views/themes/vuexy/form/produccion/viewOrdenTrabajoEdit.php
new file mode 100644
index 00000000..25d84649
--- /dev/null
+++ b/ci4/app/Views/themes/vuexy/form/produccion/viewOrdenTrabajoEdit.php
@@ -0,0 +1,78 @@
+= $this->include('themes/_commonPartialsBs/select2bs5') ?>
+= $this->include('themes/_commonPartialsBs/datatables') ?>
+= $this->include('themes/_commonPartialsBs/sweetalert') ?>
+= $this->include('themes/_commonPartialsBs/_confirm2delete') ?>
+= $this->extend('themes/vuexy/main/defaultlayout') ?>
+= $this->section('content'); ?>
+
+
+
+
+
+
+
+
+
100%
+
+
+
Cliente
+
+
+
+
+
+
+
+
+
+
+
+
+
+ = view("themes/vuexy/form/produccion/ot/otDates") ?>
+
+
+ = view("themes/vuexy/form/produccion/ot/otDetails") ?>
+
+
+ = view("themes/vuexy/form/produccion/ot/otProgress") ?>
+
+
+ = view("themes/vuexy/form/produccion/ot/otTask") ?>
+
+
+ = view("themes/vuexy/form/produccion/ot/otCosts") ?>
+
+
+ = view("themes/vuexy/form/produccion/ot/otComments") ?>
+
+
+
+ = @lang("ot.imprimir_ferro") ?>
+ = @lang("ot.imprimir_codigo_safekat") ?>
+
+
+
+
+= $this->endSection() ?>
\ No newline at end of file
diff --git a/ci4/app/Views/themes/vuexy/form/produccion/viewOrdenTrabajoList.php b/ci4/app/Views/themes/vuexy/form/produccion/viewOrdenTrabajoList.php
new file mode 100644
index 00000000..5f09fc0b
--- /dev/null
+++ b/ci4/app/Views/themes/vuexy/form/produccion/viewOrdenTrabajoList.php
@@ -0,0 +1,11 @@
+= $this->include('themes/_commonPartialsBs/select2bs5') ?>
+= $this->include('themes/_commonPartialsBs/datatables') ?>
+= $this->include('themes/_commonPartialsBs/sweetalert') ?>
+= $this->include('themes/_commonPartialsBs/_confirm2delete') ?>
+= $this->extend('themes/vuexy/main/defaultlayout') ?>
+= $this->section('content'); ?>
+
+= $this->endSection() ?>
\ No newline at end of file
diff --git a/xdebug.log b/xdebug.log
deleted file mode 100644
index d6811855..00000000
--- a/xdebug.log
+++ /dev/null
@@ -1,11677 +0,0 @@
-[25] Log opened at 2024-11-07 19:18:16.252892
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-07 19:18:17.804301
-
-[27] Log opened at 2024-11-07 19:18:17.941917
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] Log closed at 2024-11-07 19:18:18.850160
-
-[22] Log opened at 2024-11-08 13:44:08.630139
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] Log closed at 2024-11-08 13:44:09.632565
-
-[22] Log opened at 2024-11-08 13:44:09.643880
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] Log closed at 2024-11-08 13:44:10.608976
-
-[25] Log opened at 2024-11-08 13:44:10.721250
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 13:44:11.365908
-
-[23] Log opened at 2024-11-08 13:44:11.491669
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-08 13:44:12.407170
-
-[23] Log opened at 2024-11-08 13:44:13.153869
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-08 13:44:14.585896
-
-[23] Log opened at 2024-11-08 13:44:14.595177
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-08 13:44:15.714266
-
-[23] Log opened at 2024-11-08 13:44:15.797291
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-08 13:44:16.438504
-
-[23] Log opened at 2024-11-08 13:44:16.516386
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] Log opened at 2024-11-08 13:44:16.535876
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 13:44:17.439125
-
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-08 13:44:18.043469
-
-[33] Log opened at 2024-11-08 13:44:24.458635
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] Log closed at 2024-11-08 13:44:25.675197
-
-[33] Log opened at 2024-11-08 13:44:25.750689
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] Log closed at 2024-11-08 13:44:26.393906
-
-[27] Log opened at 2024-11-08 13:44:26.513963
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] Log opened at 2024-11-08 13:44:26.517007
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] Log opened at 2024-11-08 13:44:26.608214
-[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] Log closed at 2024-11-08 13:44:27.463288
-
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] Log closed at 2024-11-08 13:44:28.076407
-
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] Log closed at 2024-11-08 13:44:28.482353
-
-[27] Log opened at 2024-11-08 13:44:32.233325
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] Log closed at 2024-11-08 13:44:33.952294
-
-[27] Log opened at 2024-11-08 13:44:34.030268
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] Log closed at 2024-11-08 13:44:34.677859
-
-[28] Log opened at 2024-11-08 13:44:34.874904
-[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
-[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] Log opened at 2024-11-08 13:44:34.877854
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] Log opened at 2024-11-08 13:44:34.900981
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] Log opened at 2024-11-08 13:44:34.957259
-[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] Log opened at 2024-11-08 13:44:34.963347
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-08 13:44:35.911007
-
-[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[28] Log closed at 2024-11-08 13:44:36.513211
-
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] Log closed at 2024-11-08 13:44:36.839269
-
-[28] Log opened at 2024-11-08 13:44:36.885954
-[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
-[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 13:44:37.210355
-
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] Log closed at 2024-11-08 13:44:37.711354
-
-[23] Log opened at 2024-11-08 13:44:37.722424
-[35] Log opened at 2024-11-08 13:44:37.722424
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] Log opened at 2024-11-08 13:44:37.722772
-[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[28] Log closed at 2024-11-08 13:44:38.498946
-
-[28] Log opened at 2024-11-08 13:44:38.585550
-[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
-[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-08 13:44:38.860812
-
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] Log closed at 2024-11-08 13:44:39.228492
-
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] Log closed at 2024-11-08 13:44:39.590636
-
-[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[28] Log closed at 2024-11-08 13:44:42.568989
-
-[22] Log opened at 2024-11-08 13:44:47.953210
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Configuracion/Maquinastarifasimpresion.php -n 311
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 453
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1896
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error"
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error"
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error"
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- run -i 13
-[22] [Step Debug] ->
-
-[22] [Step Debug] ->
-
-[22] [Step Debug] ->
-
-[22] [Step Debug] ->
-
-[22] Log closed at 2024-11-08 13:44:51.159077
-
-[33] Log opened at 2024-11-08 13:45:37.227099
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1728
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- run -i 10
-[33] [Step Debug] ->
-
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- stack_get -i 11
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 12 -n "$linea" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 13 -n "$precio_unidad" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 14 -n "$data" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- context_names -i 15 -d 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- context_get -i 16 -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 17 -n "$linea" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 18 -n "$precio_unidad" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 20 -n "$input_data" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 21 -n "$input_data[\"papel_generico\"]" -p 0 -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- step_into -i 22
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- stack_get -i 23
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 24 -n "$linea" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 25 -n "$precio_unidad" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 26 -n "$data" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 27 -n "$input_data" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- context_names -i 28 -d 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- context_get -i 29 -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- eval -i 30 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZWQ0N2IyMmQwMTgwYmE5ZGRlZDQ2OGFlZTBkMTE4MWEyMGM1N2Q1NjcwYWI3YjhlYTRjZDg4ZDYyZmUxNTg3ZCddPVByZXN1cHVlc3RvU2VydmljZTo6b2J0ZW5lckNvbXBhcmFkb3JQbGFuYQ==
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761
-[33] [Step Debug] ->
-
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- run -i 32
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- stack_get -i 33
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 34 -n "$linea" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 35 -n "$precio_unidad" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 36 -n "$data" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 37 -n "$input_data" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- context_names -i 38 -d 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- context_get -i 39 -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_remove -i 40 -d 330005
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 41 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[33] [Step Debug] ->
-
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 42 -n "$datosPedido" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- run -i 43
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- stack_get -i 44
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 45 -n "$linea" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 46 -n "$precio_unidad" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 47 -n "$data" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 48 -n "$input_data" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- context_names -i 49 -d 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- context_get -i 50 -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- run -i 51
-[33] [Step Debug] ->
-
-[33] Log closed at 2024-11-08 13:47:00.058077
-
-[34] Log opened at 2024-11-08 13:47:05.065344
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (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] <- feature_set -i 5 -n extended_properties -v 1
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1728
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 7 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[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
-[34] [Step Debug] ->
-
-[34] [Step Debug] ->
-
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- stack_get -i 12
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 13 -n "$linea" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 14 -n "$precio_unidad" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 15 -n "$data" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 16 -n "$input_data" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- context_names -i 17 -d 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- context_get -i 18 -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_remove -i 19 -d 340001
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- run -i 20
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- stack_get -i 21
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- stack_get -i 22
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 23 -n "$linea" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 24 -n "$precio_unidad" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 25 -n "$data" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 26 -n "$input_data" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- context_names -i 27 -d 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- context_get -i 28 -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 29 -n "$papelimpresionmodel->getIdPapelesImpresionForPresupuesto" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 30 -n "$papel_generico" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 31 -n "$gramaje" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 32 -n "$opciones_papel" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 33 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267
-[34] [Step Debug] ->
-
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- run -i 34
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- stack_get -i 35
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 36 -n "$linea" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 37 -n "$precio_unidad" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 38 -n "$data" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 39 -n "$input_data" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- context_names -i 40 -d 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- context_get -i 41 -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 42 -n "$builder->orderBy" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 43 -n "$builder" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 44 -n "$builder->QBSelect" -p 0 -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 45 -n "$builder->db" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 46 -n "$papel_generico_id" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 47 -n "$gramaje" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 48 -n "$options" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 49 -n "$rotativa" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- run -i 50
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- stack_get -i 51
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 52 -n "$linea" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 53 -n "$precio_unidad" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 54 -n "$data" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 55 -n "$input_data" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- context_names -i 56 -d 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- context_get -i 57 -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- run -i 58
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- stack_get -i 59
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 60 -n "$linea" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 61 -n "$precio_unidad" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 62 -n "$data" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 63 -n "$input_data" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- context_names -i 64 -d 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- context_get -i 65 -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- run -i 66
-[34] [Step Debug] ->
-
-[34] Log closed at 2024-11-08 13:49:41.369382
-
-[24] Log opened at 2024-11-08 13:49:51.300075
-[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (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] <- feature_set -i 5 -n extended_properties -v 1
-[24] [Step Debug] ->
-
-[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267
-[24] [Step Debug] ->
-
-[24] [Step Debug] <- breakpoint_set -i 7 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[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-11-08 13:49:52.043747
-
-[27] Log opened at 2024-11-08 13:49:52.082607
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 7 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- run -i 11
-[27] [Step Debug] ->
-
-[27] Log closed at 2024-11-08 13:49:52.253675
-
-[27] Log opened at 2024-11-08 13:49:52.518590
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] ->
-
-[24] Log opened at 2024-11-08 13:49:52.521744
-[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[27] [Step Debug] ->
-
-[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[27] [Step Debug] ->
-
-[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[24] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[27] [Step Debug] ->
-
-[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[24] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[27] [Step Debug] ->
-
-[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[24] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[27] [Step Debug] ->
-
-[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[24] [Step Debug] ->
-
-[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[24] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267
-[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267
-[24] [Step Debug] ->
-
-[27] [Step Debug] ->
-
-[24] [Step Debug] <- breakpoint_set -i 7 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[27] [Step Debug] <- breakpoint_set -i 7 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[27] [Step Debug] ->
-
-[24] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
-[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
-[24] [Step Debug] ->
-
-[27] [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
-[27] [Step Debug] <- run -i 11
-[25] Log opened at 2024-11-08 13:49:52.631758
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- run -i 6
-[24] [Step Debug] ->
-
-[24] Log closed at 2024-11-08 13:49:52.967534
-
-[27] [Step Debug] ->
-
-[27] Log closed at 2024-11-08 13:49:53.384655
-
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267
-[25] [Step Debug] ->
-
-[25] Log closed at 2024-11-08 13:49:53.604201
-
-[25] Log opened at 2024-11-08 13:49:55.815329
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 7 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- run -i 11
-[25] [Step Debug] ->
-
-[25] [Step Debug] ->
-
-[25] Log closed at 2024-11-08 13:49:56.430603
-
-[25] Log opened at 2024-11-08 13:49:57.052400
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 7 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- run -i 11
-[25] [Step Debug] ->
-
-[25] [Step Debug] ->
-
-[25] Log closed at 2024-11-08 13:49:57.640531
-
-[23] Log opened at 2024-11-08 13:50:11.840133
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- breakpoint_set -i 7 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- run -i 11
-[23] [Step Debug] ->
-
-[23] [Step Debug] ->
-
-[23] Log closed at 2024-11-08 13:50:13.039262
-
-[23] Log opened at 2024-11-08 13:50:13.118360
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- breakpoint_set -i 7 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- run -i 11
-[23] [Step Debug] ->
-
-[23] Log closed at 2024-11-08 13:50:13.289762
-
-[35] Log opened at 2024-11-08 13:50:13.396296
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[35] [Step Debug] ->
-
-[29] Log opened at 2024-11-08 13:50:13.403891
-[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
-[35] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ->
-
-[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[29] [Step Debug] ->
-
-[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267
-[35] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 6 -n extended_properties -v 1
-[29] [Step Debug] ->
-
-[35] [Step Debug] <- breakpoint_set -i 7 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[29] [Step Debug] <- breakpoint_set -i 7 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[35] [Step Debug] ->
-
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
-[29] [Step Debug] ->
-
-[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- run -i 11
-[29] [Step Debug] <- run -i 11
-[28] Log opened at 2024-11-08 13:50:13.518429
-[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28'
-[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[28] [Step Debug] ->
-
-[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[28] [Step Debug] ->
-
-[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[28] [Step Debug] ->
-
-[28] [Step Debug] <- run -i 3
-[22] Log opened at 2024-11-08 13:50:13.538288
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[22] [Step Debug] ->
-
-[33] Log opened at 2024-11-08 13:50:13.551432
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[33] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267
-[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267
-[22] [Step Debug] ->
-
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 7 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[22] [Step Debug] <- breakpoint_set -i 7 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[33] [Step Debug] ->
-
-[22] [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"
-[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[22] [Step Debug] ->
-
-[33] [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] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[22] [Step Debug] ->
-
-[29] [Step Debug] ->
-
-[29] Log closed at 2024-11-08 13:50:13.888143
-
-[35] [Step Debug] ->
-
-[35] Log closed at 2024-11-08 13:50:14.368888
-
-[28] [Step Debug] ->
-
-[28] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1
-[28] [Step Debug] ->
-
-[28] Log closed at 2024-11-08 13:50:14.607577
-
-[22] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[33] [Step Debug] ->
-
-[22] [Step Debug] ->
-
-[34] Log opened at 2024-11-08 13:52:14.910264
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (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] <- feature_set -i 5 -n extended_properties -v 1
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 8 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[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] ->
-
-[22] [Step Debug] <- run -i 13
-[34] [Step Debug] <- run -i 12
-[33] [Step Debug] <- run -i 13
-[33] [Step Debug] ->
-
-[33] [Step Debug] ->
-
-[33] [Step Debug] ->
-
-[33] Log closed at 2024-11-08 13:52:15.586924
-
-[34] [Step Debug] ->
-
-[34] [Step Debug] ->
-
-[34] [Step Debug] ->
-
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- stack_get -i 13
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 14 -n "$linea" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 15 -n "$precio_unidad" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 16 -n "$data" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 17 -n "$input_data" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- context_names -i 18 -d 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- context_get -i 19 -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_remove -i 20 -d 340008
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312
-[34] [Step Debug] ->
-
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_remove -i 22 -d 340013
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[34] [Step Debug] ->
-
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 269
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- run -i 25
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- stack_get -i 26
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 27 -n "$linea" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 28 -n "$precio_unidad" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 29 -n "$data" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 30 -n "$input_data" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- context_names -i 31 -d 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- context_get -i 32 -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- run -i 33
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- stack_get -i 34
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 35 -n "$linea" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 36 -n "$precio_unidad" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 37 -n "$data" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 38 -n "$input_data" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- context_names -i 39 -d 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- context_get -i 40 -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- run -i 41
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- stack_get -i 42
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 43 -n "$linea" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 44 -n "$precio_unidad" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 45 -n "$data" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 46 -n "$input_data" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- context_names -i 47 -d 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- context_get -i 48 -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- run -i 49
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- stack_get -i 50
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 51 -n "$linea" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 52 -n "$precio_unidad" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 53 -n "$data" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 54 -n "$input_data" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- context_names -i 55 -d 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- context_get -i 56 -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- run -i 57
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- stack_get -i 58
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- stack_get -i 59
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 60 -n "$linea" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 61 -n "$precio_unidad" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 62 -n "$data" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 63 -n "$input_data" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- context_names -i 64 -d 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- context_get -i 65 -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- run -i 66
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- stack_get -i 67
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 68 -n "$linea" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 69 -n "$precio_unidad" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 70 -n "$data" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 71 -n "$input_data" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- context_names -i 72 -d 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- context_get -i 73 -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- run -i 74
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- stack_get -i 75
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 76 -n "$linea" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 77 -n "$precio_unidad" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 78 -n "$data" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- property_get -i 79 -n "$input_data" -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- context_names -i 80 -d 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- context_get -i 81 -d 0 -c 0
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- run -i 82
-[34] [Step Debug] ->
-
-[34] Log closed at 2024-11-08 13:53:10.037986
-
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_remove -i 14 -d 330012
-[22] [Step Debug] ->
-
-[22] Log closed at 2024-11-08 13:53:10.256935
-
-[27] Log opened at 2024-11-08 13:53:42.119979
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 6 -t conditional -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 269 -- KGJvb2wpKCRndWFyZGFzPT0xKQ==
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 8 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- run -i 12
-[27] [Step Debug] ->
-
-[27] [Step Debug] ->
-
-[27] Log closed at 2024-11-08 13:53:42.735368
-
-[25] Log opened at 2024-11-08 13:53:46.937014
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 6 -t conditional -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 269 -- KGJvb2wpKCRndWFyZGFzPT0xKQ==
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 8 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- run -i 12
-[25] [Step Debug] ->
-
-[25] [Step Debug] ->
-
-[25] Log closed at 2024-11-08 13:53:47.567741
-
-[36] Log opened at 2024-11-08 13:53:51.362825
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 6 -t conditional -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 269 -- KGJvb2wpKCRndWFyZGFzPT0xKQ==
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 8 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[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] Log closed at 2024-11-08 13:53:51.986042
-
-[35] Log opened at 2024-11-08 13:54:20.131897
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- breakpoint_set -i 6 -t conditional -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 269 -- KGJvb2wpKCRndWFyZGFzPT0xKQ==
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- breakpoint_set -i 8 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- run -i 12
-[35] [Step Debug] ->
-
-[35] [Step Debug] ->
-
-[35] [Step Debug] ->
-
-[35] [Step Debug] ->
-
-[35] Log closed at 2024-11-08 13:54:20.769662
-
-[33] Log opened at 2024-11-08 13:54:27.533721
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 6 -t conditional -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 269 -- KGJvb2wpKCRndWFyZGFzPT0xKQ==
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 8 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[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] ->
-
-[33] [Step Debug] ->
-
-[33] [Step Debug] ->
-
-[33] Log closed at 2024-11-08 13:54:28.175717
-
-[22] Log opened at 2024-11-08 13:58:54.157156
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 6 -t conditional -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 269 -- KGJvb2wpKCRndWFyZGFzPT0xKQ==
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 8 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- run -i 12
-[22] [Step Debug] ->
-
-[22] [Step Debug] ->
-
-[22] [Step Debug] ->
-
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 13
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 14 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 15 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 16 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 17 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 18 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 19 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- run -i 20
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 21
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 22 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 23 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 24 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 25 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 26 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 27 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 28 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 29 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 30 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 31 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 32 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 33 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 34 -n "$sql->finalQueryString" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 35 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 36 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 37 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 38 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 39 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 40 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 41 -n "$data[0]" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 42
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 43
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 44 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 45 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 46 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 47 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 48 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 49 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 50 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 51 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 52
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 53
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 54 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 55 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 56 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 57 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 58 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 59 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 60 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 61 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 62
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 63
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 64 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 65 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 66 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 67 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 68 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 69 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 70 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 71 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 72
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 73
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 74 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 75 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 76 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 77 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 78 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 79 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 80 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 81 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 82
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 83
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 84
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 85 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 86 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 87 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 88 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 89 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 90 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 91 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 92 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 93
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 94
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 95
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 96 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 97 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 98 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 99 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 100 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 101 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 102 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 103 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 104
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 105
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 106 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 107 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 108 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 109 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 110 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 111 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 112 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 113 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 114
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 115
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 116 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 117 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 118 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 119 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 120 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 121 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 122
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 123 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 124
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 125 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 126 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 127 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 128 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 129 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 130 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 131 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 132
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 133
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 134 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 135 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 136 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 137 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 138 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 139 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 140
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 141 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 142 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 143
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 144 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 145 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 146 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 147 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 148 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 149 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 150
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 151
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 152 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 153 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 154 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 155 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 156 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 157 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 158
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 159
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 160 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 161 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 162 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 163 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 164 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 165 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 166
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 167
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 168 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 169 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 170 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 171 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 172 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 173 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 174
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 175
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 176 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 177 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 178 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 179 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 180 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 181 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 182 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 183 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 184
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 185
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 186 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 187 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 188 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 189 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 190 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 191 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 192 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 193 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 194
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 195
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 196 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 197 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 198 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 199 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 200 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 201 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 202 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 203 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 204
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 205
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 206
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 207 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 208 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 209 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 210 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 211 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 212 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 213 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 214 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 215
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 216
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 217 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 218 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 219 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 220 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 221 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 222 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 223
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 224 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 225 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 226
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 227 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 228 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 229 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 230 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 231 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 232 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 233 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 234 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 235
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 236
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 237
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 238 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 239 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 240 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 241 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 242 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 243 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 244
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 245
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 246 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 247 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 248 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 249 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 250 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 251 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 252
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 253
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 254
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 255 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 256 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 257 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 258 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 259 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 260 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 261
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 262
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 263 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 264 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 265 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 266 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 267 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 268 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 269
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 270
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 271 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 272 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 273 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 274 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 275 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 276 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 277 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 278 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 279
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 280
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 281 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 282 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 283 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 284 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 285 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 286 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 287 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 288 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 289
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 290
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 291
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 292 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 293 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 294 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 295 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 296 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 297 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 298 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 299 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 300
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 301
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 302 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 303 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 304 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 305 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 306 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 307 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 308 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 309 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 310
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 311
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 312 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 313 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 314 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 315 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 316 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 317 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 318
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 319 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 320
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 321 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 322 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 323 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 324 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 325 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 326 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 327 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 328
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 329
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 330 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 331 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 332 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 333 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 334 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 335 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 336
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 337
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 338 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 339 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 340 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 341 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 342 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 343 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 344 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 345 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 346 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 347 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 348
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 349
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 350 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 351 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 352 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 353 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 354 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 355 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 356
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 357
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 358 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 359 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 360 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 361 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 362 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 363 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 364 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 365 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 366
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 367
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 368
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 369 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 370 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 371 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 372 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 373 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 374 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 375
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 376
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 377
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 378 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 379 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 380 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 381 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 382 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 383 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 384 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 385 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 386
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 387
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 388
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 389 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 390 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 391 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 392 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 393 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 394 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 395
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 396
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 397
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 398 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 399 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 400 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 401 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 402 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 403 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 404
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 405
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 406
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 407 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 408 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 409 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 410 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 411 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 412 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 413
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 414
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 415 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 416
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 417 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 418 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 419 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 420 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 421 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 422 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 423 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 424
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 425 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 426 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 427
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 428 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 429 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 430 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 431 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 432 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 433 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 434
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 435
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 436 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 437 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 438 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 439 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 440 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 441 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 442
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 443
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 444 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 445 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 446 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 447 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 448 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 449 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 450 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 451 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 452
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 453
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 454 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 455 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 456 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 457 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 458 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 459 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 460
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 461
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 462 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 463 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 464 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 465 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 466 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 467 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 468
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 469
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 470
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 471 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 472 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 473 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 474 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 475 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 476 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 477
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 478
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 479 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 480 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 481 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 482 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 483 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 484 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 485
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 486
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 487 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 488 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 489 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 490 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 491 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 492 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 493 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 494 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 495
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 496
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 497
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 498 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 499 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 500 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 501 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 502 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 503 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 504 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 505 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 506
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 507
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 508
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 509 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 510 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 511 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 512 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 513 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 514 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 515 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 516 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 517
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 518
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 519 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 520 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 521 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 522 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 523 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 524 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 525 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 526 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 527
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 528
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 529
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 530 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 531 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 532 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 533 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 534 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 535 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 536 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 537 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 538
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 539
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 540 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 541 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 542 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 543 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 544 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 545 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 546 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 547 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- run -i 548
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 549
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 550 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 551 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 552 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 553 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 554 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 555 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 556 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 557 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- step_over -i 558
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 559
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- stack_get -i 560
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 561 -n "$linea" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 562 -n "$precio_unidad" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 563 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 564 -n "$input_data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 565 -n "$sql" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- property_get -i 566 -n "$data" -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_names -i 567 -d 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- context_get -i 568 -d 0 -c 0
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- run -i 569
-[22] [Step Debug] ->
-
-[22] Log closed at 2024-11-08 14:02:35.531929
-
-[27] Log opened at 2024-11-08 14:02:45.910848
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 6 -t conditional -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 269 -- KGJvb2wpKCRndWFyZGFzPT0xKQ==
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 8 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- run -i 12
-[27] [Step Debug] ->
-
-[27] [Step Debug] ->
-
-[27] [Step Debug] ->
-
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- stack_get -i 13
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 14 -n "$linea" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 15 -n "$precio_unidad" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 16 -n "$data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 17 -n "$input_data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 18 -n "$sql" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- context_names -i 20 -d 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- context_get -i 21 -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 22 -n "$papel_generico" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[27] [Step Debug] ->
-
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- run -i 24
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- stack_get -i 25
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 26 -n "$linea" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 27 -n "$precio_unidad" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 28 -n "$data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 29 -n "$input_data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 30 -n "$sql" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 31 -n "$data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- context_names -i 32 -d 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- context_get -i 33 -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_remove -i 34 -d 270017
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- run -i 35
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- stack_get -i 36
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 37 -n "$linea" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 38 -n "$precio_unidad" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 39 -n "$data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 40 -n "$input_data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 41 -n "$sql" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 42 -n "$data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- context_names -i 43 -d 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- context_get -i 44 -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- run -i 45
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- stack_get -i 46
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 47 -n "$linea" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 48 -n "$precio_unidad" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 49 -n "$data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 50 -n "$input_data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 51 -n "$sql" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 52 -n "$data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- context_names -i 53 -d 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- context_get -i 54 -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 55 -n "$coste_guardas" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- step_over -i 56
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- stack_get -i 57
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 58 -n "$linea" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 59 -n "$precio_unidad" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 60 -n "$data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 61 -n "$input_data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 62 -n "$sql" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 63 -n "$data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- context_names -i 64 -d 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- context_get -i 65 -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- step_over -i 66
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- stack_get -i 67
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- stack_get -i 68
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 69 -n "$linea" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 70 -n "$precio_unidad" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 71 -n "$data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 72 -n "$input_data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 73 -n "$sql" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 74 -n "$data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- context_names -i 75 -d 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- context_get -i 76 -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- step_over -i 77
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- stack_get -i 78
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 79 -n "$linea" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 80 -n "$precio_unidad" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 81 -n "$data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 82 -n "$input_data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 83 -n "$sql" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 84 -n "$data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- context_names -i 85 -d 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- context_get -i 86 -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- step_over -i 87
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- stack_get -i 88
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 89 -n "$linea" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 90 -n "$precio_unidad" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 91 -n "$data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 92 -n "$input_data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 93 -n "$sql" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 94 -n "$data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- context_names -i 95 -d 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- context_get -i 96 -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- step_over -i 97
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- stack_get -i 98
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 99 -n "$linea" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 100 -n "$precio_unidad" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 101 -n "$data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 102 -n "$input_data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 103 -n "$sql" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 104 -n "$data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- context_names -i 105 -d 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- context_get -i 106 -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 107 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[27] [Step Debug] ->
-
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 108 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[27] [Step Debug] ->
-
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 109 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[27] [Step Debug] ->
-
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- run -i 110
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- stack_get -i 111
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- stack_get -i 112
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 113 -n "$linea" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 114 -n "$precio_unidad" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 115 -n "$data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 116 -n "$input_data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 117 -n "$sql" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- property_get -i 118 -n "$data" -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- context_names -i 119 -d 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- context_get -i 120 -d 0 -c 0
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- run -i 121
-[27] [Step Debug] ->
-
-[27] Log closed at 2024-11-08 14:04:09.777932
-
-[27] Log opened at 2024-11-08 14:04:14.273462
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- run -i 15
-[27] [Step Debug] ->
-
-[27] Log closed at 2024-11-08 14:04:14.945446
-
-[25] Log opened at 2024-11-08 14:04:15.005539
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- run -i 15
-[25] [Step Debug] ->
-
-[25] Log closed at 2024-11-08 14:04:15.189879
-
-[25] Log opened at 2024-11-08 14:04:15.415466
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[25] [Step Debug] ->
-
-[36] Log opened at 2024-11-08 14:04:15.419288
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[25] [Step Debug] ->
-
-[36] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[25] [Step Debug] ->
-
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[36] [Step Debug] ->
-
-[25] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[36] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[25] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[25] [Step Debug] ->
-
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[25] [Step Debug] ->
-
-[36] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[25] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[36] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[36] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[25] [Step Debug] ->
-
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[25] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[36] [Step Debug] ->
-
-[25] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[25] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[36] [Step Debug] ->
-
-[25] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[25] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[36] [Step Debug] ->
-
-[25] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 19 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[25] [Step Debug] <- breakpoint_set -i 19 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[25] [Step Debug] ->
-
-[36] [Step Debug] ->
-
-[25] [Step Debug] <- run -i 20
-[36] [Step Debug] <- run -i 20
-[36] [Step Debug] ->
-
-[36] Log closed at 2024-11-08 14:04:15.913201
-
-[36] Log opened at 2024-11-08 14:04:16.182452
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- run -i 15
-[25] [Step Debug] ->
-
-[25] Log closed at 2024-11-08 14:04:16.330141
-
-[36] [Step Debug] ->
-
-[36] Log closed at 2024-11-08 14:04:16.885727
-
-[23] Log opened at 2024-11-08 14:04:24.851171
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- run -i 15
-[23] [Step Debug] ->
-
-[23] Log closed at 2024-11-08 14:04:25.519538
-
-[29] Log opened at 2024-11-08 14:04:25.578284
-[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- run -i 15
-[29] [Step Debug] ->
-
-[29] Log closed at 2024-11-08 14:04:25.764078
-
-[29] Log opened at 2024-11-08 14:04:25.854155
-[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[29] [Step Debug] ->
-
-[23] Log opened at 2024-11-08 14:04:25.870243
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[29] [Step Debug] ->
-
-[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[23] [Step Debug] ->
-
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[29] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[23] [Step Debug] ->
-
-[35] Log opened at 2024-11-08 14:04:25.935076
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[35] [Step Debug] ->
-
-[23] [Step Debug] <- run -i 6
-[35] [Step Debug] <- run -i 6
-[29] [Step Debug] <- run -i 15
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[23] [Step Debug] ->
-
-[23] Log closed at 2024-11-08 14:04:26.317398
-
-[29] [Step Debug] ->
-
-[29] Log closed at 2024-11-08 14:04:26.766696
-
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[35] [Step Debug] ->
-
-[35] Log closed at 2024-11-08 14:04:26.948978
-
-[33] Log opened at 2024-11-08 14:09:29.950046
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- run -i 15
-[33] [Step Debug] ->
-
-[33] Log closed at 2024-11-08 14:09:30.677552
-
-[34] Log opened at 2024-11-08 14:09:30.755674
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (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] <- feature_set -i 5 -n extended_properties -v 1
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- run -i 15
-[34] [Step Debug] ->
-
-[34] Log closed at 2024-11-08 14:09:30.942081
-
-[34] Log opened at 2024-11-08 14:09:31.099285
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] ->
-
-[33] Log opened at 2024-11-08 14:09:31.102746
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[34] [Step Debug] ->
-
-[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[33] [Step Debug] ->
-
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[34] [Step Debug] ->
-
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[33] [Step Debug] ->
-
-[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[34] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[33] [Step Debug] ->
-
-[34] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[34] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[33] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[33] [Step Debug] ->
-
-[34] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[34] [Step Debug] ->
-
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[34] [Step Debug] ->
-
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[34] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[33] [Step Debug] ->
-
-[34] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[34] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[34] [Step Debug] ->
-
-[33] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[34] [Step Debug] ->
-
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[34] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[33] [Step Debug] ->
-
-[34] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[34] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[33] [Step Debug] ->
-
-[34] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[34] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[33] [Step Debug] ->
-
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 19 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[34] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 19 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[33] [Step Debug] ->
-
-[22] Log opened at 2024-11-08 14:09:31.193471
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[22] [Step Debug] ->
-
-[33] [Step Debug] <- run -i 20
-[22] [Step Debug] <- run -i 6
-[34] [Step Debug] <- run -i 20
-[33] [Step Debug] ->
-
-[33] Log closed at 2024-11-08 14:09:31.610590
-
-[34] [Step Debug] ->
-
-[34] Log closed at 2024-11-08 14:09:32.010675
-
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[22] [Step Debug] ->
-
-[22] Log closed at 2024-11-08 14:09:32.224193
-
-[27] Log opened at 2024-11-08 14:09:46.745217
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- run -i 15
-[27] [Step Debug] ->
-
-[27] Log closed at 2024-11-08 14:09:48.037743
-
-[27] Log opened at 2024-11-08 14:09:48.111751
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- run -i 15
-[27] [Step Debug] ->
-
-[27] Log closed at 2024-11-08 14:09:48.298272
-
-[25] Log opened at 2024-11-08 14:09:48.406194
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[25] [Step Debug] ->
-
-[36] Log opened at 2024-11-08 14:09:48.413166
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[36] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[25] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1
-[36] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[36] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[36] [Step Debug] ->
-
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[36] [Step Debug] ->
-
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[25] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[25] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[36] [Step Debug] ->
-
-[25] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[25] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[36] [Step Debug] ->
-
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[25] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 9 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[25] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[25] [Step Debug] ->
-
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error"
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error"
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error"
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 13 -n resolved_breakpoints -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 14 -n extended_properties -v 1
-[36] [Step Debug] ->
-
-[23] Log opened at 2024-11-08 14:09:48.527905
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[23] [Step Debug] ->
-
-[25] [Step Debug] <- run -i 15
-[23] [Step Debug] <- run -i 6
-[36] [Step Debug] <- run -i 15
-[29] Log opened at 2024-11-08 14:09:48.545990
-[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[29] [Step Debug] ->
-
-[35] Log opened at 2024-11-08 14:09:48.568335
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] <- breakpoint_set -i 6 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
-[29] [Step Debug] ->
-
-[35] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[35] [Step Debug] ->
-
-[29] [Step Debug] <- run -i 10
-[35] [Step Debug] <- run -i 6
-[36] [Step Debug] ->
-
-[36] Log closed at 2024-11-08 14:09:49.052318
-
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[23] [Step Debug] ->
-
-[23] Log closed at 2024-11-08 14:09:49.231083
-
-[25] [Step Debug] ->
-
-[25] Log closed at 2024-11-08 14:09:49.700583
-
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[35] [Step Debug] ->
-
-[35] Log closed at 2024-11-08 14:09:49.895744
-
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[29] [Step Debug] ->
-
-[29] Log closed at 2024-11-08 14:09:50.099111
-
-[36] Log opened at 2024-11-08 14:09:50.584506
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- run -i 15
-[36] [Step Debug] ->
-
-[36] Log closed at 2024-11-08 14:09:51.780016
-
-[36] Log opened at 2024-11-08 14:09:51.861713
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- run -i 15
-[36] [Step Debug] ->
-
-[36] Log closed at 2024-11-08 14:09:52.041582
-
-[36] Log opened at 2024-11-08 14:09:52.143044
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[36] [Step Debug] ->
-
-[25] Log opened at 2024-11-08 14:09:52.151042
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[25] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[36] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 6 -n extended_properties -v 1
-[25] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[25] [Step Debug] ->
-
-[36] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[36] [Step Debug] ->
-
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[25] [Step Debug] ->
-
-[36] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[36] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[25] [Step Debug] ->
-
-[36] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[36] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[25] [Step Debug] ->
-
-[36] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[25] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[25] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[36] [Step Debug] ->
-
-[25] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[36] [Step Debug] ->
-
-[23] Log opened at 2024-11-08 14:09:52.255004
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[23] [Step Debug] ->
-
-[36] [Step Debug] <- run -i 15
-[23] [Step Debug] <- run -i 6
-[25] [Step Debug] <- run -i 15
-[35] Log opened at 2024-11-08 14:09:52.270718
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[35] [Step Debug] ->
-
-[29] Log opened at 2024-11-08 14:09:52.286765
-[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[29] [Step Debug] ->
-
-[35] [Step Debug] <- run -i 6
-[29] [Step Debug] <- run -i 6
-[25] [Step Debug] ->
-
-[25] Log closed at 2024-11-08 14:09:52.736179
-
-[36] [Step Debug] ->
-
-[36] Log closed at 2024-11-08 14:09:53.150525
-
-[23] [Step Debug] ->
-
-[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[23] [Step Debug] ->
-
-[23] Log closed at 2024-11-08 14:09:53.352539
-
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[35] [Step Debug] ->
-
-[35] Log closed at 2024-11-08 14:09:53.549305
-
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[29] [Step Debug] ->
-
-[29] Log closed at 2024-11-08 14:09:53.757876
-
-[36] Log opened at 2024-11-08 14:09:55.474560
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- run -i 15
-[36] [Step Debug] ->
-
-[36] Log closed at 2024-11-08 14:09:56.105995
-
-[33] Log opened at 2024-11-08 14:10:04.801148
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- run -i 15
-[33] [Step Debug] ->
-
-[33] Log closed at 2024-11-08 14:10:05.402704
-
-[22] Log opened at 2024-11-08 14:11:12.540955
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] Log opened at 2024-11-08 14:11:12.540955
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] ->
-
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[34] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[22] [Step Debug] ->
-
-[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[34] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[22] [Step Debug] ->
-
-[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[34] [Step Debug] ->
-
-[22] [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
-[34] [Step Debug] ->
-
-[22] [Step Debug] ->
-
-[34] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[34] [Step Debug] ->
-
-[22] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[34] [Step Debug] ->
-
-[22] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[34] [Step Debug] ->
-
-[22] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[34] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[22] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[34] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[34] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[22] [Step Debug] ->
-
-[34] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[22] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[22] [Step Debug] ->
-
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[34] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[22] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[22] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[22] [Step Debug] ->
-
-[34] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[34] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[34] [Step Debug] ->
-
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[34] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[22] [Step Debug] ->
-
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[22] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[22] [Step Debug] ->
-
-[34] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 19 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[34] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[22] [Step Debug] ->
-
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 19 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[34] [Step Debug] ->
-
-[22] [Step Debug] <- run -i 20
-[34] [Step Debug] <- run -i 20
-[34] [Step Debug] ->
-
-[34] Log closed at 2024-11-08 14:11:13.161948
-
-[22] [Step Debug] ->
-
-[22] Log closed at 2024-11-08 14:11:13.419879
-
-[27] Log opened at 2024-11-08 14:12:00.552151
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- run -i 15
-[27] [Step Debug] ->
-
-[27] Log closed at 2024-11-08 14:12:01.177027
-
-[25] Log opened at 2024-11-08 14:12:16.921264
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- run -i 15
-[25] [Step Debug] ->
-
-[25] [Step Debug] ->
-
-[25] [Step Debug] ->
-
-[25] [Step Debug] ->
-
-[25] [Step Debug] ->
-
-[25] [Step Debug] ->
-
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- stack_get -i 16
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- property_get -i 17 -n "$linea" -d 0 -c 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- property_get -i 18 -n "$precio_unidad" -d 0 -c 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- property_get -i 20 -n "$input_data" -d 0 -c 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- property_get -i 21 -n "$sql" -d 0 -c 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- property_get -i 22 -n "$data" -d 0 -c 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- context_names -i 23 -d 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- context_get -i 24 -d 0 -c 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- run -i 25
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- stack_get -i 26
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- property_get -i 27 -n "$linea" -d 0 -c 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- property_get -i 28 -n "$precio_unidad" -d 0 -c 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- property_get -i 29 -n "$data" -d 0 -c 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- property_get -i 30 -n "$input_data" -d 0 -c 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- property_get -i 31 -n "$sql" -d 0 -c 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- property_get -i 32 -n "$data" -d 0 -c 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- context_names -i 33 -d 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- context_get -i 34 -d 0 -c 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- run -i 35
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- stack_get -i 36
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- property_get -i 37 -n "$linea" -d 0 -c 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- property_get -i 38 -n "$precio_unidad" -d 0 -c 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- property_get -i 39 -n "$data" -d 0 -c 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- property_get -i 40 -n "$input_data" -d 0 -c 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- property_get -i 41 -n "$sql" -d 0 -c 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- property_get -i 42 -n "$data" -d 0 -c 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- context_names -i 43 -d 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- context_get -i 44 -d 0 -c 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_remove -i 45 -d 250054
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- run -i 46
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- stack_get -i 47
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- property_get -i 48 -n "$linea" -d 0 -c 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- property_get -i 49 -n "$precio_unidad" -d 0 -c 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- property_get -i 50 -n "$data" -d 0 -c 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- property_get -i 51 -n "$input_data" -d 0 -c 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- property_get -i 52 -n "$sql" -d 0 -c 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- property_get -i 53 -n "$data" -d 0 -c 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- context_names -i 54 -d 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- context_get -i 55 -d 0 -c 0
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_remove -i 56 -d 250055
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 57 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795
-[25] [Step Debug] ->
-
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- run -i 58
-[25] [Step Debug] ->
-
-[25] Log closed at 2024-11-08 14:12:38.269531
-
-[35] Log opened at 2024-11-08 14:13:36.659835
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik=
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- run -i 15
-[35] [Step Debug] ->
-
-[35] [Step Debug] ->
-
-[35] [Step Debug] ->
-
-[35] [Step Debug] ->
-
-[35] [Step Debug] ->
-
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- stack_get -i 16
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 17 -n "$linea" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 18 -n "$precio_unidad" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 20 -n "$input_data" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 21 -n "$sql" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 22 -n "$data" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- context_names -i 23 -d 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- context_get -i 24 -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- breakpoint_remove -i 25 -d 350017
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- run -i 26
-[35] [Step Debug] ->
-
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- stack_get -i 27
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 28 -n "$linea" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 29 -n "$precio_unidad" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 30 -n "$data" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 31 -n "$input_data" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 32 -n "$sql" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 33 -n "$data" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- context_names -i 34 -d 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- context_get -i 35 -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 36 -n "$modelTarifa->getTarifaPresupuestoEncuadernacion" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 37 -n "$tarifa" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- run -i 38
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- stack_get -i 39
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 40 -n "$linea" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 41 -n "$precio_unidad" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 42 -n "$data" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 43 -n "$input_data" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 44 -n "$sql" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 45 -n "$data" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- context_names -i 46 -d 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- context_get -i 47 -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 48 -n "$tarifa" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 49 -n "$paginas" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 50 -n "$tirada" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 51 -n "$ancho" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 52 -n "$alto" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- step_into -i 53
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- stack_get -i 54
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 55 -n "$linea" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 56 -n "$precio_unidad" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 57 -n "$data" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 58 -n "$input_data" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 59 -n "$sql" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 60 -n "$data" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- context_names -i 61 -d 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- context_get -i 62 -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 63 -n "$tarifa_id" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- step_over -i 64
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- stack_get -i 65
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- breakpoint_set -i 66 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159
-[35] [Step Debug] ->
-
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- run -i 67
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- stack_get -i 68
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 69 -n "$linea" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 70 -n "$precio_unidad" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 71 -n "$data" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 72 -n "$input_data" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 73 -n "$sql" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- property_get -i 74 -n "$data" -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- context_names -i 75 -d 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- context_get -i 76 -d 0 -c 0
-[35] [Step Debug] ->
-
-[35] [Step Debug] <- run -i 77
-[35] [Step Debug] ->
-
-[35] Log closed at 2024-11-08 14:15:41.672997
-
-[29] Log opened at 2024-11-08 14:16:52.297775
-[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- run -i 15
-[29] [Step Debug] ->
-
-[29] [Step Debug] ->
-
-[29] [Step Debug] ->
-
-[29] [Step Debug] ->
-
-[29] [Step Debug] ->
-
-[29] [Step Debug] ->
-
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- stack_get -i 16
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- property_get -i 17 -n "$linea" -d 0 -c 0
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- property_get -i 18 -n "$precio_unidad" -d 0 -c 0
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- property_get -i 20 -n "$input_data" -d 0 -c 0
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- property_get -i 21 -n "$sql" -d 0 -c 0
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- property_get -i 22 -n "$data" -d 0 -c 0
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- context_names -i 23 -d 0
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- context_get -i 24 -d 0 -c 0
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- run -i 25
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- stack_get -i 26
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- property_get -i 27 -n "$linea" -d 0 -c 0
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- property_get -i 28 -n "$precio_unidad" -d 0 -c 0
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- property_get -i 29 -n "$data" -d 0 -c 0
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- property_get -i 30 -n "$input_data" -d 0 -c 0
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- property_get -i 31 -n "$sql" -d 0 -c 0
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- property_get -i 32 -n "$data" -d 0 -c 0
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- context_names -i 33 -d 0
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- context_get -i 34 -d 0 -c 0
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- run -i 35
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- stack_get -i 36
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- property_get -i 37 -n "$linea" -d 0 -c 0
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- property_get -i 38 -n "$precio_unidad" -d 0 -c 0
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- property_get -i 39 -n "$data" -d 0 -c 0
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- property_get -i 40 -n "$input_data" -d 0 -c 0
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- property_get -i 41 -n "$sql" -d 0 -c 0
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- property_get -i 42 -n "$data" -d 0 -c 0
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- context_names -i 43 -d 0
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- context_get -i 44 -d 0 -c 0
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- run -i 45
-[29] [Step Debug] ->
-
-[29] Log closed at 2024-11-08 14:17:00.223624
-
-[36] Log opened at 2024-11-08 14:17:05.552814
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- run -i 15
-[36] [Step Debug] ->
-
-[36] [Step Debug] ->
-
-[36] [Step Debug] ->
-
-[36] [Step Debug] ->
-
-[36] [Step Debug] ->
-
-[36] [Step Debug] ->
-
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- stack_get -i 16
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 17 -n "$linea" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 18 -n "$precio_unidad" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 20 -n "$input_data" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 21 -n "$sql" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 22 -n "$data" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- context_names -i 23 -d 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- context_get -i 24 -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- run -i 25
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- stack_get -i 26
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 27 -n "$linea" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 28 -n "$precio_unidad" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 29 -n "$data" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 30 -n "$input_data" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 31 -n "$sql" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 32 -n "$data" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- context_names -i 33 -d 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- context_get -i 34 -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- run -i 35
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- stack_get -i 36
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 37 -n "$linea" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 38 -n "$precio_unidad" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 39 -n "$data" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 40 -n "$input_data" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 41 -n "$sql" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 42 -n "$data" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- context_names -i 43 -d 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- context_get -i 44 -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- run -i 45
-[36] [Step Debug] ->
-
-[36] Log closed at 2024-11-08 14:17:14.431380
-
-[36] Log opened at 2024-11-08 14:17:18.230466
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- run -i 15
-[36] [Step Debug] ->
-
-[36] [Step Debug] ->
-
-[36] [Step Debug] ->
-
-[36] [Step Debug] ->
-
-[36] [Step Debug] ->
-
-[36] [Step Debug] ->
-
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- stack_get -i 16
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 17 -n "$linea" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 18 -n "$precio_unidad" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 20 -n "$input_data" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 21 -n "$sql" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 22 -n "$data" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- context_names -i 23 -d 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- context_get -i 24 -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- run -i 25
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- stack_get -i 26
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- stack_get -i 27
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 28 -n "$linea" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 29 -n "$precio_unidad" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 30 -n "$data" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 31 -n "$input_data" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 32 -n "$sql" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 33 -n "$data" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- context_names -i 34 -d 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- context_get -i 35 -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 36 -n "$sql->finalQueryString" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- run -i 37
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- stack_get -i 38
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 39 -n "$linea" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 40 -n "$precio_unidad" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 41 -n "$data" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 42 -n "$input_data" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 43 -n "$sql" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 44 -n "$data" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- context_names -i 45 -d 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- context_get -i 46 -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- run -i 47
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- stack_get -i 48
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 49 -n "$linea" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 50 -n "$precio_unidad" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 51 -n "$data" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 52 -n "$input_data" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 53 -n "$sql" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 54 -n "$data" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- context_names -i 55 -d 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- context_get -i 56 -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 57 -n "$sql->finalQueryString" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- run -i 58
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- stack_get -i 59
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 60 -n "$linea" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 61 -n "$precio_unidad" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 62 -n "$data" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 63 -n "$input_data" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 64 -n "$sql" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- property_get -i 65 -n "$data" -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- context_names -i 66 -d 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- context_get -i 67 -d 0 -c 0
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- run -i 68
-[36] [Step Debug] ->
-
-[36] Log closed at 2024-11-08 14:19:28.753651
-
-[33] Log opened at 2024-11-08 14:19:33.631816
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- run -i 15
-[33] [Step Debug] ->
-
-[33] [Step Debug] ->
-
-[33] [Step Debug] ->
-
-[33] [Step Debug] ->
-
-[33] [Step Debug] ->
-
-[33] [Step Debug] ->
-
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- stack_get -i 16
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 17 -n "$linea" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 18 -n "$precio_unidad" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 20 -n "$input_data" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 21 -n "$sql" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 22 -n "$data" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- context_names -i 23 -d 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- context_get -i 24 -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- run -i 25
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- stack_get -i 26
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- stack_get -i 27
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 28 -n "$linea" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 29 -n "$precio_unidad" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 30 -n "$data" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 31 -n "$input_data" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 32 -n "$sql" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 33 -n "$data" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- context_names -i 34 -d 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- context_get -i 35 -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- run -i 36
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- stack_get -i 37
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 38 -n "$linea" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 39 -n "$precio_unidad" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 40 -n "$data" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 41 -n "$input_data" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 42 -n "$sql" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 43 -n "$data" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- context_names -i 44 -d 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- context_get -i 45 -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- run -i 46
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- stack_get -i 47
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- stack_get -i 48
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 49 -n "$linea" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 50 -n "$precio_unidad" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 51 -n "$data" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 52 -n "$input_data" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 53 -n "$sql" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 54 -n "$data" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- context_names -i 55 -d 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- context_get -i 56 -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 57 -n "$data" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- run -i 58
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- stack_get -i 59
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 60 -n "$linea" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 61 -n "$precio_unidad" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 62 -n "$data" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 63 -n "$input_data" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 64 -n "$sql" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- property_get -i 65 -n "$data" -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- context_names -i 66 -d 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- context_get -i 67 -d 0 -c 0
-[33] [Step Debug] ->
-
-[33] [Step Debug] <- run -i 68
-[33] [Step Debug] ->
-
-[33] Log closed at 2024-11-08 14:19:48.704146
-
-[34] Log opened at 2024-11-08 14:19:55.118032
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (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] <- feature_set -i 5 -n extended_properties -v 1
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- run -i 15
-[34] [Step Debug] ->
-
-[34] Log closed at 2024-11-08 14:19:56.699057
-
-[34] Log opened at 2024-11-08 14:19:59.581926
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (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] <- feature_set -i 5 -n extended_properties -v 1
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[34] [Step Debug] ->
-
-[34] [Step Debug] <- run -i 15
-[34] [Step Debug] ->
-
-[34] [Step Debug] ->
-
-[34] [Step Debug] ->
-
-[34] [Step Debug] ->
-
-[34] [Step Debug] ->
-
-[34] Log closed at 2024-11-08 14:20:04.451731
-
-[22] Log opened at 2024-11-08 14:20:11.780942
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- run -i 15
-[22] [Step Debug] ->
-
-[22] Log closed at 2024-11-08 14:20:12.419846
-
-[22] Log opened at 2024-11-08 14:20:12.494883
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[22] [Step Debug] ->
-
-[22] [Step Debug] <- run -i 15
-[22] [Step Debug] ->
-
-[22] Log closed at 2024-11-08 14:20:12.660484
-
-[37] Log opened at 2024-11-08 14:20:12.782660
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] ->
-
-[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[37] [Step Debug] ->
-
-[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[37] [Step Debug] ->
-
-[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[37] [Step Debug] ->
-
-[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[37] [Step Debug] ->
-
-[37] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[37] [Step Debug] ->
-
-[27] Log opened at 2024-11-08 14:20:12.796647
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312
-[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312
-[27] [Step Debug] ->
-
-[37] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 2 -n max_children -v 100
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 3 -n max_data -v 8192
-[27] [Step Debug] ->
-
-[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795
-[37] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 12 -n notify_ok -v 1
-[27] [Step Debug] ->
-
-[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[37] [Step Debug] ->
-
-[37] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[37] [Step Debug] ->
-
-[37] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129
-[37] [Step Debug] ->
-
-[37] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159
-[37] [Step Debug] ->
-
-[37] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[37] [Step Debug] ->
-
-[37] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[37] [Step Debug] ->
-
-[37] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[37] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 13 -n resolved_breakpoints -v 1
-[27] [Step Debug] ->
-
-[27] [Step Debug] <- feature_set -i 14 -n extended_properties -v 1
-[27] [Step Debug] ->
-
-[25] Log opened at 2024-11-08 14:20:12.887885
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[25] [Step Debug] ->
-
-[37] [Step Debug] <- run -i 15
-[25] [Step Debug] <- run -i 6
-[27] [Step Debug] <- run -i 15
-[27] [Step Debug] ->
-
-[27] Log closed at 2024-11-08 14:20:13.324736
-
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312
-[25] [Step Debug] ->
-
-[25] Log closed at 2024-11-08 14:20:13.568991
-
-[37] [Step Debug] ->
-
-[37] Log closed at 2024-11-08 14:20:13.992546
-
-[25] Log opened at 2024-11-08 14:20:17.316026
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- run -i 15
-[25] [Step Debug] ->
-
-[25] Log closed at 2024-11-08 14:20:21.367529
-
-[25] Log opened at 2024-11-08 14:20:21.444680
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- run -i 15
-[25] [Step Debug] ->
-
-[25] Log closed at 2024-11-08 14:20:21.626589
-
-[25] Log opened at 2024-11-08 14:20:21.720217
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[25] [Step Debug] ->
-
-[29] Log opened at 2024-11-08 14:20:21.728189
-[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[29] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312
-[25] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1
-[29] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795
-[29] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795
-[29] [Step Debug] ->
-
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[29] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129
-[29] [Step Debug] ->
-
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159
-[25] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944
-[25] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error"
-[25] [Step Debug] ->
-
-[29] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error"
-[29] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129
-[25] [Step Debug] ->
-
-[25] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error"
-[29] [Step Debug] ->
-
-[25] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error"
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error"
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error"
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 13 -n resolved_breakpoints -v 1
-[29] [Step Debug] ->
-
-[29] [Step Debug] <- feature_set -i 14 -n extended_properties -v 1
-[29] [Step Debug] ->
-
-[36] Log opened at 2024-11-08 14:20:21.810645
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1
-[36] [Step Debug] ->
-
-[29] [Step Debug] <- run -i 15
-[36] [Step Debug] <- run -i 6
-[25] [Step Debug] <- run -i 15
-[29] [Step Debug] ->
-
-[29] Log closed at 2024-11-08 14:20:22.332017
-
-[36] [Step Debug] ->
-
-[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312
-[36] [Step Debug] ->
-
-[36] Log closed at 2024-11-08 14:20:22.476656
-
-[25] [Step Debug] ->
-
-[25] Log closed at 2024-11-08 14:20:22.971120
-
-[22] Log opened at 2024-11-08 15:00:58.268790
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] Log closed at 2024-11-08 15:00:59.351456
-
-[22] Log opened at 2024-11-08 15:01:00.487509
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] Log closed at 2024-11-08 15:01:04.410461
-
-[35] Log opened at 2024-11-08 15:01:36.188047
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] Log closed at 2024-11-08 15:01:40.429544
-
-[23] Log opened at 2024-11-08 15:01:42.077485
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-08 15:01:43.757397
-
-[23] Log opened at 2024-11-08 15:01:43.898078
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-08 15:01:44.560026
-
-[36] Log opened at 2024-11-08 15:01:44.830545
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] Log opened at 2024-11-08 15:01:44.835736
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] Log opened at 2024-11-08 15:01:44.864997
-[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] Log opened at 2024-11-08 15:01:44.918124
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] Log opened at 2024-11-08 15:01:44.926787
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-08 15:01:45.821390
-
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] Log closed at 2024-11-08 15:01:46.436014
-
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] Log closed at 2024-11-08 15:01:46.778492
-
-[36] Log opened at 2024-11-08 15:01:46.815517
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 15:01:47.159044
-
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] Log closed at 2024-11-08 15:01:47.659541
-
-[37] Log opened at 2024-11-08 15:01:47.672655
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[29] Log opened at 2024-11-08 15:01:47.672655
-[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] Log opened at 2024-11-08 15:01:47.673272
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] Log closed at 2024-11-08 15:01:48.376025
-
-[36] Log opened at 2024-11-08 15:01:48.449748
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-08 15:01:48.733138
-
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] Log closed at 2024-11-08 15:01:49.085244
-
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] Log closed at 2024-11-08 15:01:49.441066
-
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] Log closed at 2024-11-08 15:01:52.518760
-
-[34] Log opened at 2024-11-08 15:02:03.750780
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] Log closed at 2024-11-08 15:02:05.476291
-
-[34] Log opened at 2024-11-08 15:02:05.591267
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] Log closed at 2024-11-08 15:02:06.237206
-
-[22] Log opened at 2024-11-08 15:02:06.440571
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] Log opened at 2024-11-08 15:02:06.448287
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] Log opened at 2024-11-08 15:02:06.480058
-[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] Log opened at 2024-11-08 15:02:06.525686
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] Log opened at 2024-11-08 15:02:06.539339
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] Log closed at 2024-11-08 15:02:07.426790
-
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] Log closed at 2024-11-08 15:02:08.075018
-
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] Log closed at 2024-11-08 15:02:08.411831
-
-[35] Log opened at 2024-11-08 15:02:08.455919
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] Log closed at 2024-11-08 15:02:08.790450
-
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-08 15:02:09.339285
-
-[22] Log opened at 2024-11-08 15:02:09.352300
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] Log opened at 2024-11-08 15:02:09.352995
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] Log opened at 2024-11-08 15:02:09.354013
-[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] Log closed at 2024-11-08 15:02:09.921921
-
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] Log closed at 2024-11-08 15:02:10.451822
-
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] Log closed at 2024-11-08 15:02:10.809255
-
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-08 15:02:11.197908
-
-[25] Log opened at 2024-11-08 15:02:26.041123
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 15:02:27.094739
-
-[37] Log opened at 2024-11-08 15:02:32.197114
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-08 15:02:33.355006
-
-[37] Log opened at 2024-11-08 15:02:35.539751
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] Log opened at 2024-11-08 15:02:35.854385
-[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] Log opened at 2024-11-08 15:02:36.335388
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] Log opened at 2024-11-08 15:02:36.394719
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] Log opened at 2024-11-08 15:02:36.593286
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] Log opened at 2024-11-08 15:02:36.657239
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-08 15:02:36.692523
-
-[22] Log opened at 2024-11-08 15:02:36.734943
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] Log opened at 2024-11-08 15:02:36.857909
-[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] Log opened at 2024-11-08 15:02:36.917812
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] Log opened at 2024-11-08 15:02:37.047928
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log opened at 2024-11-08 15:02:37.123682
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] Log closed at 2024-11-08 15:02:37.142428
-
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] Log closed at 2024-11-08 15:02:37.544081
-
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] Log closed at 2024-11-08 15:02:37.901174
-
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] Log closed at 2024-11-08 15:02:38.284177
-
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] Log closed at 2024-11-08 15:02:38.684943
-
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] Log closed at 2024-11-08 15:02:39.059133
-
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] Log closed at 2024-11-08 15:02:39.417714
-
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-08 15:02:39.776608
-
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 15:02:40.153154
-
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-08 15:02:40.514941
-
-[37] Log opened at 2024-11-08 15:02:42.515214
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-08 15:02:43.608841
-
-[36] Log opened at 2024-11-08 15:04:07.493048
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] Log closed at 2024-11-08 15:04:10.697347
-
-[40] Log opened at 2024-11-08 15:04:34.581068
-[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] Log closed at 2024-11-08 15:04:38.262516
-
-[41] Log opened at 2024-11-08 15:04:52.655605
-[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] Log closed at 2024-11-08 15:04:54.346128
-
-[41] Log opened at 2024-11-08 15:04:54.758054
-[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] Log opened at 2024-11-08 15:04:54.769329
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] Log opened at 2024-11-08 15:04:54.789317
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] Log opened at 2024-11-08 15:04:54.847019
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] Log opened at 2024-11-08 15:04:54.852669
-[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] Log closed at 2024-11-08 15:04:55.791896
-
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] Log closed at 2024-11-08 15:04:56.397140
-
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] Log closed at 2024-11-08 15:04:56.735673
-
-[35] Log opened at 2024-11-08 15:04:56.769615
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] Log closed at 2024-11-08 15:04:57.220242
-
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] Log opened at 2024-11-08 15:04:57.240186
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[22] Log opened at 2024-11-08 15:04:57.239567
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] Log opened at 2024-11-08 15:04:57.240140
-[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] Log closed at 2024-11-08 15:04:57.628261
-
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] Log closed at 2024-11-08 15:04:58.288628
-
-[35] Log opened at 2024-11-08 15:04:58.358893
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] Log closed at 2024-11-08 15:04:58.648888
-
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] Log closed at 2024-11-08 15:04:58.999415
-
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] Log closed at 2024-11-08 15:04:59.344137
-
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] Log closed at 2024-11-08 15:05:01.672041
-
-[23] Log opened at 2024-11-08 15:06:01.774551
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-08 15:06:02.826447
-
-[25] Log opened at 2024-11-08 15:06:15.283476
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 15:06:16.361510
-
-[25] Log opened at 2024-11-08 15:06:20.598896
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 15:06:23.531948
-
-[37] Log opened at 2024-11-08 15:06:39.529268
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-08 15:06:42.338385
-
-[36] Log opened at 2024-11-08 15:06:50.760733
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] Log closed at 2024-11-08 15:06:51.904938
-
-[36] Log opened at 2024-11-08 15:06:51.981894
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] Log closed at 2024-11-08 15:06:52.630341
-
-[40] Log opened at 2024-11-08 15:06:52.724308
-[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] Log opened at 2024-11-08 15:06:52.739790
-[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] Log opened at 2024-11-08 15:06:52.808554
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] Log closed at 2024-11-08 15:06:53.724658
-
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] Log closed at 2024-11-08 15:06:54.376657
-
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] Log closed at 2024-11-08 15:06:54.838772
-
-[34] Log opened at 2024-11-08 15:06:56.877392
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] Log closed at 2024-11-08 15:06:58.062755
-
-[34] Log opened at 2024-11-08 15:06:58.126811
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] Log closed at 2024-11-08 15:06:58.768992
-
-[34] Log opened at 2024-11-08 15:06:58.867739
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] Log opened at 2024-11-08 15:06:58.874610
-[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] Log opened at 2024-11-08 15:06:58.923941
-[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] Log closed at 2024-11-08 15:06:59.819869
-
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] Log closed at 2024-11-08 15:07:00.496362
-
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] Log closed at 2024-11-08 15:07:00.855409
-
-[41] Log opened at 2024-11-08 15:08:19.880329
-[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] Log closed at 2024-11-08 15:08:21.036669
-
-[23] Log opened at 2024-11-08 15:15:54.090109
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-08 15:15:55.295983
-
-[23] Log opened at 2024-11-08 15:15:55.442087
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-08 15:15:56.084736
-
-[25] Log opened at 2024-11-08 15:15:56.228810
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] Log opened at 2024-11-08 15:15:56.247917
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] Log opened at 2024-11-08 15:15:56.414255
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-08 15:15:57.245977
-
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 15:15:57.888197
-
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] Log closed at 2024-11-08 15:15:58.324280
-
-[34] Log opened at 2024-11-08 15:16:09.237842
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] Log closed at 2024-11-08 15:16:12.421917
-
-[34] Log opened at 2024-11-08 15:16:12.570472
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] Log opened at 2024-11-08 15:16:12.582416
-[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
-[41] Log opened at 2024-11-08 15:16:12.582476
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] Log opened at 2024-11-08 15:16:12.582416
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] Log opened at 2024-11-08 15:16:12.585796
-[23] Log opened at 2024-11-08 15:16:12.585773
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] Log closed at 2024-11-08 15:16:13.224819
-
-[34] Log opened at 2024-11-08 15:16:13.227097
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-08 15:16:13.690191
-
-[23] Log opened at 2024-11-08 15:16:13.692971
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] Log closed at 2024-11-08 15:16:14.036230
-
-[40] Log opened at 2024-11-08 15:16:14.039027
-[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] Log closed at 2024-11-08 15:16:14.366752
-
-[38] Log opened at 2024-11-08 15:16:14.368951
-[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] Log closed at 2024-11-08 15:16:14.708542
-
-[41] Log opened at 2024-11-08 15:16:14.710776
-[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] Log closed at 2024-11-08 15:16:15.137495
-
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] Log closed at 2024-11-08 15:16:15.463751
-
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-08 15:16:15.811284
-
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] Log closed at 2024-11-08 15:16:16.159022
-
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] Log closed at 2024-11-08 15:16:16.519608
-
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] Log closed at 2024-11-08 15:16:16.855629
-
-[35] Log opened at 2024-11-08 15:16:16.943805
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[40] Log opened at 2024-11-08 15:16:16.943883
-[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] Log opened at 2024-11-08 15:16:17.316972
-[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] Log opened at 2024-11-08 15:16:17.319886
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] Log closed at 2024-11-08 15:16:18.083825
-
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] Log closed at 2024-11-08 15:16:18.688793
-
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] Log closed at 2024-11-08 15:16:19.179085
-
-[40] Log opened at 2024-11-08 15:16:19.192975
-[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] Log opened at 2024-11-08 15:16:19.192976
-[35] Log opened at 2024-11-08 15:16:19.192976
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-08 15:16:19.574555
-
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] Log closed at 2024-11-08 15:16:20.280251
-
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] Log closed at 2024-11-08 15:16:20.624561
-
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] Log closed at 2024-11-08 15:16:20.990843
-
-[25] Log opened at 2024-11-08 15:16:51.076619
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 15:16:52.166232
-
-[25] Log opened at 2024-11-08 15:16:53.713313
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] Log opened at 2024-11-08 15:16:53.718487
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 15:16:55.169046
-
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] Log closed at 2024-11-08 15:16:55.702101
-
-[42] Log opened at 2024-11-08 15:17:03.644489
-[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
-[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[42] Log closed at 2024-11-08 15:17:04.765591
-
-[42] Log opened at 2024-11-08 15:17:05.942671
-[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
-[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[42] Log closed at 2024-11-08 15:17:07.931647
-
-[34] Log opened at 2024-11-08 15:17:47.954319
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] Log opened at 2024-11-08 15:17:47.967401
-[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] Log opened at 2024-11-08 15:17:47.967401
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] Log opened at 2024-11-08 15:17:47.968035
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] Log closed at 2024-11-08 15:17:49.390167
-
-[40] Log opened at 2024-11-08 15:17:49.482281
-[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] Log opened at 2024-11-08 15:17:49.482383
-[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
-[34] Log opened at 2024-11-08 15:17:49.482281
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-08 15:17:49.719095
-
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] Log closed at 2024-11-08 15:17:50.076096
-
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] Log closed at 2024-11-08 15:17:50.423849
-
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] Log closed at 2024-11-08 15:17:50.758088
-
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] Log closed at 2024-11-08 15:17:51.103134
-
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] Log closed at 2024-11-08 15:17:51.457981
-
-[34] Log opened at 2024-11-08 15:17:55.536708
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] Log opened at 2024-11-08 15:17:55.567056
-[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] Log opened at 2024-11-08 15:17:55.567491
-[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] Log opened at 2024-11-08 15:17:55.568560
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] Log closed at 2024-11-08 15:17:57.434368
-
-[25] Log opened at 2024-11-08 15:17:57.528786
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] Log opened at 2024-11-08 15:17:57.528971
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[22] Log opened at 2024-11-08 15:17:57.528971
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-08 15:17:57.772590
-
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] Log closed at 2024-11-08 15:17:58.147958
-
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] Log closed at 2024-11-08 15:17:58.486259
-
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 15:17:58.818534
-
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] Log closed at 2024-11-08 15:17:59.157279
-
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] Log closed at 2024-11-08 15:17:59.499207
-
-[43] Log opened at 2024-11-08 15:18:34.851151
-[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
-[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] Log opened at 2024-11-08 15:18:34.851005
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-08 15:18:36.887007
-
-[23] Log opened at 2024-11-08 15:18:36.979933
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] Log opened at 2024-11-08 15:18:36.981062
-[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] Log opened at 2024-11-08 15:18:36.981495
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[43] Log closed at 2024-11-08 15:18:37.675391
-
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[43] Log opened at 2024-11-08 15:18:37.803871
-[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
-[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] Log opened at 2024-11-08 15:18:37.838999
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] Log opened at 2024-11-08 15:18:37.839273
-[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] Log closed at 2024-11-08 15:18:38.081090
-
-[35] Log opened at 2024-11-08 15:18:38.083097
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-08 15:18:38.434840
-
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] Log closed at 2024-11-08 15:18:38.808501
-
-[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[43] Log closed at 2024-11-08 15:18:39.960615
-
-[23] Log opened at 2024-11-08 15:18:40.042875
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[43] Log opened at 2024-11-08 15:18:40.042875
-[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] Log opened at 2024-11-08 15:18:40.042875
-[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-08 15:18:40.305366
-
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] Log closed at 2024-11-08 15:18:40.660358
-
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] Log closed at 2024-11-08 15:18:40.991258
-
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] Log closed at 2024-11-08 15:18:41.327546
-
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-08 15:18:41.679749
-
-[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[43] Log closed at 2024-11-08 15:18:42.031681
-
-[25] Log opened at 2024-11-08 15:18:51.910002
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] Log opened at 2024-11-08 15:18:51.949741
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] Log opened at 2024-11-08 15:18:51.951996
-[44] Log opened at 2024-11-08 15:18:51.953227
-[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 15:18:53.398674
-
-[25] Log opened at 2024-11-08 15:18:53.428711
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] Log opened at 2024-11-08 15:18:53.482869
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[40] Log opened at 2024-11-08 15:18:53.482869
-[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] Log opened at 2024-11-08 15:18:53.704122
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] Log opened at 2024-11-08 15:18:53.738046
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[38] Log opened at 2024-11-08 15:18:53.738010
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] Log closed at 2024-11-08 15:18:53.741398
-
-[34] Log opened at 2024-11-08 15:18:53.745085
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] Log closed at 2024-11-08 15:18:54.125599
-
-[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[44] Log closed at 2024-11-08 15:18:54.486438
-
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 15:18:55.708082
-
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-08 15:18:56.044402
-
-[37] Log opened at 2024-11-08 15:18:56.046077
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] Log closed at 2024-11-08 15:18:56.390916
-
-[40] Log opened at 2024-11-08 15:18:56.393150
-[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] Log closed at 2024-11-08 15:18:57.505418
-
-[35] Log opened at 2024-11-08 15:18:57.507802
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] Log closed at 2024-11-08 15:18:57.844263
-
-[25] Log opened at 2024-11-08 15:18:57.846176
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] Log closed at 2024-11-08 15:18:58.175318
-
-[38] Log opened at 2024-11-08 15:18:58.177228
-[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-08 15:18:58.519806
-
-[23] Log opened at 2024-11-08 15:18:58.521811
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-08 15:18:58.867553
-
-[37] Log opened at 2024-11-08 15:18:58.870886
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] Log closed at 2024-11-08 15:18:59.214114
-
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] Log closed at 2024-11-08 15:18:59.587166
-
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 15:18:59.914679
-
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] Log closed at 2024-11-08 15:19:00.251965
-
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-08 15:19:00.580079
-
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-08 15:19:00.907868
-
-[50] Log opened at 2024-11-08 15:19:08.923407
-[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
-[49] Log opened at 2024-11-08 15:19:08.923428
-[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] Log closed at 2024-11-08 15:19:10.114295
-
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] Log closed at 2024-11-08 15:19:10.462464
-
-[40] Log opened at 2024-11-08 15:19:45.682022
-[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] Log closed at 2024-11-08 15:19:47.046712
-
-[25] Log opened at 2024-11-08 15:41:57.696298
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 15:42:00.892111
-
-[25] Log opened at 2024-11-08 15:42:01.021037
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] Log opened at 2024-11-08 15:42:01.068061
-[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
-[23] Log opened at 2024-11-08 15:42:01.068092
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] Log opened at 2024-11-08 15:42:01.074874
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] Log opened at 2024-11-08 15:42:01.079694
-[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] Log opened at 2024-11-08 15:42:01.083389
-[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 15:42:01.666271
-
-[25] Log opened at 2024-11-08 15:42:01.668757
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] Log closed at 2024-11-08 15:42:02.125508
-
-[50] Log opened at 2024-11-08 15:42:02.127513
-[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] Log closed at 2024-11-08 15:42:02.603803
-
-[49] Log opened at 2024-11-08 15:42:02.606335
-[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-08 15:42:02.934435
-
-[37] Log opened at 2024-11-08 15:42:02.936378
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-08 15:42:03.281467
-
-[23] Log opened at 2024-11-08 15:42:03.284069
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] Log closed at 2024-11-08 15:42:03.616169
-
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 15:42:03.942869
-
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] Log closed at 2024-11-08 15:42:04.271939
-
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] Log closed at 2024-11-08 15:42:04.612691
-
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-08 15:42:04.930955
-
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-08 15:42:05.280676
-
-[38] Log opened at 2024-11-08 15:42:05.444255
-[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] Log opened at 2024-11-08 15:42:05.451161
-[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] Log opened at 2024-11-08 15:42:05.616755
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] Log opened at 2024-11-08 15:42:05.617230
-[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] Log closed at 2024-11-08 15:42:06.556951
-
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] Log closed at 2024-11-08 15:42:07.165844
-
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] Log closed at 2024-11-08 15:42:07.549318
-
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-08 15:42:08.059564
-
-[38] Log opened at 2024-11-08 15:42:08.073593
-[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] Log opened at 2024-11-08 15:42:08.074999
-[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] Log opened at 2024-11-08 15:42:08.075441
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] Log closed at 2024-11-08 15:42:09.103098
-
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-08 15:42:09.861276
-
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] Log closed at 2024-11-08 15:42:10.573281
-
-[38] Log opened at 2024-11-08 15:42:12.218676
-[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] Log opened at 2024-11-08 15:42:12.225528
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] Log opened at 2024-11-08 15:42:12.225528
-[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] Log opened at 2024-11-08 15:42:12.229792
-[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[44] Log opened at 2024-11-08 15:42:12.230776
-[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
-[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] Log opened at 2024-11-08 15:42:12.230987
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] Log opened at 2024-11-08 15:42:12.232771
-[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] Log closed at 2024-11-08 15:42:13.333565
-
-[40] Log opened at 2024-11-08 15:42:13.350102
-[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] Log closed at 2024-11-08 15:42:13.707210
-
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-08 15:42:14.085351
-
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] Log closed at 2024-11-08 15:42:14.481801
-
-[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[44] Log closed at 2024-11-08 15:42:14.874112
-
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] Log closed at 2024-11-08 15:42:15.241956
-
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] Log closed at 2024-11-08 15:42:15.615264
-
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] Log closed at 2024-11-08 15:42:16.137329
-
-[25] Log opened at 2024-11-08 15:46:29.253434
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 15:46:32.365075
-
-[25] Log opened at 2024-11-08 15:46:32.497014
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] Log opened at 2024-11-08 15:46:32.501244
-[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
-[53] Log opened at 2024-11-08 15:46:32.501636
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
-[40] Log opened at 2024-11-08 15:46:32.501264
-[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
-[37] Log opened at 2024-11-08 15:46:32.501419
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] Log opened at 2024-11-08 15:46:32.501857
-[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 15:46:33.161603
-
-[25] Log opened at 2024-11-08 15:46:33.163635
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] Log closed at 2024-11-08 15:46:33.556032
-
-[49] Log opened at 2024-11-08 15:46:33.558568
-[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-08 15:46:33.896268
-
-[37] Log opened at 2024-11-08 15:46:33.899184
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[53] Log closed at 2024-11-08 15:46:34.225975
-
-[53] Log opened at 2024-11-08 15:46:34.228248
-[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
-[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] Log closed at 2024-11-08 15:46:34.552916
-
-[38] Log opened at 2024-11-08 15:46:34.555110
-[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] Log closed at 2024-11-08 15:46:34.990178
-
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 15:46:35.329913
-
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] Log closed at 2024-11-08 15:46:35.673020
-
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-08 15:46:36.017839
-
-[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[53] Log closed at 2024-11-08 15:46:36.371055
-
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] Log closed at 2024-11-08 15:46:36.714821
-
-[37] Log opened at 2024-11-08 15:46:36.777479
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] Log opened at 2024-11-08 15:46:36.781996
-[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] Log opened at 2024-11-08 15:46:36.948194
-[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] Log opened at 2024-11-08 15:46:36.951949
-[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] Log closed at 2024-11-08 15:46:37.860014
-
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-08 15:46:38.473896
-
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] Log closed at 2024-11-08 15:46:38.865505
-
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] Log closed at 2024-11-08 15:46:39.360504
-
-[38] Log opened at 2024-11-08 15:46:39.377602
-[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] Log opened at 2024-11-08 15:46:39.378034
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] Log opened at 2024-11-08 15:46:39.378034
-[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] Log closed at 2024-11-08 15:46:40.435400
-
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-08 15:46:40.784527
-
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] Log closed at 2024-11-08 15:46:41.166193
-
-[40] Log opened at 2024-11-08 15:46:42.055577
-[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] Log opened at 2024-11-08 15:46:42.055577
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[38] Log opened at 2024-11-08 15:46:42.055577
-[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] Log opened at 2024-11-08 15:46:42.055577
-[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[44] Log opened at 2024-11-08 15:46:42.059284
-[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
-[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] Log opened at 2024-11-08 15:46:42.062546
-[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] Log opened at 2024-11-08 15:46:42.062945
-[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34'
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] Log closed at 2024-11-08 15:46:43.152181
-
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-08 15:46:43.532074
-
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] Log closed at 2024-11-08 15:46:43.903000
-
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] Log closed at 2024-11-08 15:46:44.300668
-
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] Log closed at 2024-11-08 15:46:44.725999
-
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[34] Log closed at 2024-11-08 15:46:45.117995
-
-[38] Log opened at 2024-11-08 15:46:45.132889
-[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[44] Log closed at 2024-11-08 15:46:45.518597
-
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] Log closed at 2024-11-08 15:46:46.238937
-
-[25] Log opened at 2024-11-08 15:46:59.040858
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 15:47:00.147256
-
-[25] Log opened at 2024-11-08 15:47:01.155931
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[53] Log opened at 2024-11-08 15:47:01.171216
-[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
-[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 15:47:02.705077
-
-[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[53] Log closed at 2024-11-08 15:47:03.301414
-
-[25] Log opened at 2024-11-08 15:47:04.628283
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 15:47:05.796932
-
-[25] Log opened at 2024-11-08 15:47:07.179531
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 15:47:09.926278
-
-[25] Log opened at 2024-11-08 15:47:10.578860
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] Log opened at 2024-11-08 15:47:10.595918
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[55] Log opened at 2024-11-08 15:47:10.596431
-[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] Log opened at 2024-11-08 15:47:10.597515
-[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] Log closed at 2024-11-08 15:47:11.670875
-
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 15:47:12.106419
-
-[40] Log opened at 2024-11-08 15:47:12.210087
-[25] Log opened at 2024-11-08 15:47:12.210087
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] Log opened at 2024-11-08 15:47:12.210680
-[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[55] Log closed at 2024-11-08 15:47:12.443249
-
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-08 15:47:12.781509
-
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] Log closed at 2024-11-08 15:47:13.275063
-
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] Log closed at 2024-11-08 15:47:13.636611
-
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 15:47:13.977377
-
-[25] Log opened at 2024-11-08 15:47:14.826001
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[55] Log opened at 2024-11-08 15:47:14.842629
-[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
-[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] Log opened at 2024-11-08 15:47:14.842629
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] Log opened at 2024-11-08 15:47:14.843408
-[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 15:47:17.551638
-
-[40] Log opened at 2024-11-08 15:47:17.662706
-[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] Log opened at 2024-11-08 15:47:17.662692
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] Log opened at 2024-11-08 15:47:17.663301
-[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] Log closed at 2024-11-08 15:47:17.892823
-
-[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[55] Log closed at 2024-11-08 15:47:18.246367
-
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-08 15:47:18.582428
-
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] Log closed at 2024-11-08 15:47:18.920257
-
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] Log closed at 2024-11-08 15:47:19.265993
-
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 15:47:19.636990
-
-[25] Log opened at 2024-11-08 15:47:21.264557
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] Log opened at 2024-11-08 15:47:21.264922
-[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50'
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-08 15:47:22.493180
-
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[50] Log closed at 2024-11-08 15:47:22.853117
-
-[53] Log opened at 2024-11-08 15:47:29.644412
-[38] Log opened at 2024-11-08 15:47:29.644210
-[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38'
-[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53'
-[44] Log opened at 2024-11-08 15:47:29.644210
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
-[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[55] Log opened at 2024-11-08 15:47:29.650894
-[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55'
-[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[56] Log opened at 2024-11-08 15:47:29.651540
-[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56'
-[37] Log opened at 2024-11-08 15:47:29.651331
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] Log opened at 2024-11-08 15:47:29.654297
-[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[53] Log closed at 2024-11-08 15:47:30.766597
-
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] Log closed at 2024-11-08 15:47:31.231396
-
-[49] Log opened at 2024-11-08 15:47:31.245807
-[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49'
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[56] Log closed at 2024-11-08 15:47:31.592966
-
-[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[44] Log closed at 2024-11-08 15:47:32.056561
-
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[38] Log closed at 2024-11-08 15:47:32.439098
-
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-08 15:47:32.838210
-
-[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[55] Log closed at 2024-11-08 15:47:33.213938
-
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[49] Log closed at 2024-11-08 15:47:33.635252
-
-[25] Log opened at 2024-11-09 10:16:26.676028
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-09 10:16:27.756162
-
-[26] Log opened at 2024-11-09 10:16:27.862214
-[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
-[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[26] Log closed at 2024-11-09 10:16:28.513016
-
-[23] Log opened at 2024-11-09 10:16:28.637354
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-09 10:16:29.534249
-
-[23] Log opened at 2024-11-09 10:16:33.999923
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-09 10:16:35.450770
-
-[23] Log opened at 2024-11-09 10:16:35.460561
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-09 10:16:36.550511
-
-[23] Log opened at 2024-11-09 10:16:36.604419
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-09 10:16:37.247721
-
-[23] Log opened at 2024-11-09 10:16:37.326424
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] Log opened at 2024-11-09 10:16:37.341606
-[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] Log closed at 2024-11-09 10:16:38.302776
-
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-09 10:16:38.932792
-
-[33] Log opened at 2024-11-09 10:17:14.096946
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] Log closed at 2024-11-09 10:17:15.306321
-
-[33] Log opened at 2024-11-09 10:17:15.381376
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] Log closed at 2024-11-09 10:17:16.026527
-
-[22] Log opened at 2024-11-09 10:17:16.143942
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] Log opened at 2024-11-09 10:17:16.152807
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] Log opened at 2024-11-09 10:17:16.251928
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] Log closed at 2024-11-09 10:17:17.116963
-
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] Log closed at 2024-11-09 10:17:17.780960
-
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-09 10:17:18.210939
-
-[22] Log opened at 2024-11-09 10:17:19.976422
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] Log closed at 2024-11-09 10:17:21.742049
-
-[22] Log opened at 2024-11-09 10:17:21.830036
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] Log closed at 2024-11-09 10:17:22.481618
-
-[22] Log opened at 2024-11-09 10:17:22.648814
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] Log opened at 2024-11-09 10:17:22.654874
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] Log opened at 2024-11-09 10:17:22.676581
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] Log opened at 2024-11-09 10:17:22.721503
-[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] Log opened at 2024-11-09 10:17:22.727261
-[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] Log closed at 2024-11-09 10:17:23.619051
-
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] Log closed at 2024-11-09 10:17:24.295688
-
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-09 10:17:24.641411
-
-[22] Log opened at 2024-11-09 10:17:24.671747
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] Log closed at 2024-11-09 10:17:25.002707
-
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] Log closed at 2024-11-09 10:17:25.540639
-
-[27] Log opened at 2024-11-09 10:17:25.551975
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[25] Log opened at 2024-11-09 10:17:25.551975
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] Log opened at 2024-11-09 10:17:25.552497
-[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] Log closed at 2024-11-09 10:17:26.267961
-
-[22] Log opened at 2024-11-09 10:17:26.354463
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-09 10:17:26.610248
-
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] Log closed at 2024-11-09 10:17:26.985859
-
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] Log closed at 2024-11-09 10:17:27.346325
-
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] Log closed at 2024-11-09 10:17:29.818292
-
-[23] Log opened at 2024-11-09 10:17:35.386470
-[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[23] Log closed at 2024-11-09 10:17:38.832839
-
-[26] Log opened at 2024-11-09 10:18:26.109047
-[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
-[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[26] Log closed at 2024-11-09 10:18:29.704991
-
-[30] Log opened at 2024-11-09 10:18:44.896041
-[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] Log closed at 2024-11-09 10:18:48.266105
-
-[33] Log opened at 2024-11-09 10:20:13.981470
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] Log closed at 2024-11-09 10:20:17.967769
-
-[31] Log opened at 2024-11-09 10:20:21.216710
-[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] Log closed at 2024-11-09 10:20:22.849750
-
-[31] Log opened at 2024-11-09 10:20:23.005950
-[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] Log closed at 2024-11-09 10:20:23.671253
-
-[24] Log opened at 2024-11-09 10:20:23.932705
-[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] Log opened at 2024-11-09 10:20:23.938396
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] Log opened at 2024-11-09 10:20:23.962406
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] Log opened at 2024-11-09 10:20:24.013135
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] Log opened at 2024-11-09 10:20:24.023149
-[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-09 10:20:24.924377
-
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] Log closed at 2024-11-09 10:20:25.582890
-
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] Log closed at 2024-11-09 10:20:25.907473
-
-[24] Log opened at 2024-11-09 10:20:25.945006
-[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] Log closed at 2024-11-09 10:20:26.417618
-
-[25] Log opened at 2024-11-09 10:20:26.431957
-[22] Log opened at 2024-11-09 10:20:26.431970
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] Log opened at 2024-11-09 10:20:26.432606
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] Log closed at 2024-11-09 10:20:26.797491
-
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] Log closed at 2024-11-09 10:20:27.445060
-
-[24] Log opened at 2024-11-09 10:20:27.508477
-[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] Log closed at 2024-11-09 10:20:27.796803
-
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] Log closed at 2024-11-09 10:20:28.153034
-
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-09 10:20:28.510563
-
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] Log closed at 2024-11-09 10:20:31.113304
-
-[26] Log opened at 2024-11-09 10:21:36.423232
-[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
-[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[26] Log closed at 2024-11-09 10:21:39.957911
-
-[26] Log opened at 2024-11-09 10:21:42.387986
-[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
-[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[26] Log closed at 2024-11-09 10:21:45.849430
-
-[33] Log opened at 2024-11-09 10:26:54.803523
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] Log closed at 2024-11-09 10:26:58.572749
-
-[31] Log opened at 2024-11-09 10:30:40.842258
-[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] Log closed at 2024-11-09 10:30:42.504861
-
-[31] Log opened at 2024-11-09 10:30:42.643918
-[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] Log closed at 2024-11-09 10:30:43.306110
-
-[29] Log opened at 2024-11-09 10:30:43.575573
-[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] Log opened at 2024-11-09 10:30:43.576253
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] Log opened at 2024-11-09 10:30:43.599081
-[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] Log opened at 2024-11-09 10:30:43.658243
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] Log opened at 2024-11-09 10:30:43.664894
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] Log closed at 2024-11-09 10:30:44.589687
-
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] Log closed at 2024-11-09 10:30:44.907451
-
-[22] Log opened at 2024-11-09 10:30:44.948909
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] Log closed at 2024-11-09 10:30:45.537034
-
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] Log closed at 2024-11-09 10:30:46.044586
-
-[29] Log opened at 2024-11-09 10:30:46.064944
-[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] Log opened at 2024-11-09 10:30:46.067674
-[27] Log opened at 2024-11-09 10:30:46.067674
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-09 10:30:46.423771
-
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] Log closed at 2024-11-09 10:30:47.104374
-
-[22] Log opened at 2024-11-09 10:30:47.174587
-[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] Log closed at 2024-11-09 10:30:47.476502
-
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] Log closed at 2024-11-09 10:30:47.844861
-
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] Log closed at 2024-11-09 10:30:48.209458
-
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[22] Log closed at 2024-11-09 10:30:50.931568
-
-[33] Log opened at 2024-11-09 10:31:35.008460
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] Log closed at 2024-11-09 10:31:38.729199
-
-[36] Log opened at 2024-11-09 10:33:03.469100
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] Log closed at 2024-11-09 10:33:05.176468
-
-[36] Log opened at 2024-11-09 10:33:05.324669
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] Log closed at 2024-11-09 10:33:05.982677
-
-[27] Log opened at 2024-11-09 10:33:06.249808
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] Log opened at 2024-11-09 10:33:06.256127
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] Log opened at 2024-11-09 10:33:06.283464
-[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] Log opened at 2024-11-09 10:33:06.332689
-[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] Log opened at 2024-11-09 10:33:06.340835
-[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-09 10:33:07.242692
-
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] Log closed at 2024-11-09 10:33:07.857860
-
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] Log closed at 2024-11-09 10:33:08.208308
-
-[27] Log opened at 2024-11-09 10:33:08.244973
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] Log closed at 2024-11-09 10:33:08.697473
-
-[25] Log opened at 2024-11-09 10:33:08.712298
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] Log opened at 2024-11-09 10:33:08.713362
-[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] Log opened at 2024-11-09 10:33:08.713476
-[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] Log closed at 2024-11-09 10:33:09.065143
-
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] Log closed at 2024-11-09 10:33:09.714485
-
-[27] Log opened at 2024-11-09 10:33:09.783554
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] Log closed at 2024-11-09 10:33:10.075749
-
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-09 10:33:10.432918
-
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] Log closed at 2024-11-09 10:33:10.806283
-
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] Log closed at 2024-11-09 10:33:13.482889
-
-[33] Log opened at 2024-11-09 10:33:36.319726
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] Log opened at 2024-11-09 10:33:36.333748
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] Log opened at 2024-11-09 10:33:36.347532
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] Log opened at 2024-11-09 10:33:36.356412
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] Log opened at 2024-11-09 10:33:36.369093
-[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] Log closed at 2024-11-09 10:33:39.556892
-
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] Log closed at 2024-11-09 10:33:42.218136
-
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] Log closed at 2024-11-09 10:33:44.839127
-
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-09 10:33:47.433114
-
-[29] Log opened at 2024-11-09 10:33:48.378265
-[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29'
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] Log opened at 2024-11-09 10:33:48.385996
-[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] Log opened at 2024-11-09 10:33:48.394035
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] Log closed at 2024-11-09 10:33:50.233181
-
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[29] Log closed at 2024-11-09 10:33:52.944084
-
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-09 10:33:55.480717
-
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] Log closed at 2024-11-09 10:33:57.882384
-
-[35] Log opened at 2024-11-09 10:42:10.318221
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] Log closed at 2024-11-09 10:42:13.696171
-
-[37] Log opened at 2024-11-09 10:42:22.988460
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-09 10:42:24.020976
-
-[37] Log opened at 2024-11-09 10:42:25.545280
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-09 10:42:28.883031
-
-[31] Log opened at 2024-11-09 10:43:28.460976
-[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] Log closed at 2024-11-09 10:43:31.678015
-
-[27] Log opened at 2024-11-09 10:45:26.699460
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] Log closed at 2024-11-09 10:45:28.356734
-
-[27] Log opened at 2024-11-09 10:45:28.546034
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] Log closed at 2024-11-09 10:45:29.204687
-
-[33] Log opened at 2024-11-09 10:45:29.601458
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] Log opened at 2024-11-09 10:45:29.692860
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] Log opened at 2024-11-09 10:45:29.699666
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] Log opened at 2024-11-09 10:45:29.711111
-[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] Log opened at 2024-11-09 10:45:29.716571
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] Log closed at 2024-11-09 10:45:30.695112
-
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] Log closed at 2024-11-09 10:45:31.296662
-
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-09 10:45:31.659636
-
-[33] Log opened at 2024-11-09 10:45:31.693862
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] Log closed at 2024-11-09 10:45:32.170159
-
-[30] Log opened at 2024-11-09 10:45:32.184782
-[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] Log opened at 2024-11-09 10:45:32.186681
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] Log opened at 2024-11-09 10:45:32.187797
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] Log closed at 2024-11-09 10:45:32.540483
-
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] Log closed at 2024-11-09 10:45:33.246149
-
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] Log closed at 2024-11-09 10:45:33.625737
-
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] Log closed at 2024-11-09 10:45:34.054783
-
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-09 10:45:34.428503
-
-[33] Log opened at 2024-11-09 10:45:35.942103
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] Log closed at 2024-11-09 10:45:39.502169
-
-[31] Log opened at 2024-11-09 10:45:47.107441
-[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] Log closed at 2024-11-09 10:45:50.359186
-
-[25] Log opened at 2024-11-09 10:45:55.431895
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-09 10:45:56.476217
-
-[25] Log opened at 2024-11-09 10:45:57.233457
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-09 10:46:00.922285
-
-[36] Log opened at 2024-11-09 10:48:23.047694
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] Log closed at 2024-11-09 10:48:24.701430
-
-[36] Log opened at 2024-11-09 10:48:24.867856
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] Log closed at 2024-11-09 10:48:25.543923
-
-[25] Log opened at 2024-11-09 10:48:25.889920
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] Log opened at 2024-11-09 10:48:25.908952
-[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] Log opened at 2024-11-09 10:48:25.931955
-[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] Log opened at 2024-11-09 10:48:25.985467
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] Log opened at 2024-11-09 10:48:25.990884
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] Log closed at 2024-11-09 10:48:26.875775
-
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-09 10:48:27.506343
-
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] Log closed at 2024-11-09 10:48:27.842050
-
-[25] Log opened at 2024-11-09 10:48:27.877127
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] Log closed at 2024-11-09 10:48:28.313455
-
-[24] Log opened at 2024-11-09 10:48:28.328529
-[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] Log opened at 2024-11-09 10:48:28.328781
-[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] Log opened at 2024-11-09 10:48:28.329029
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-09 10:48:28.699431
-
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-09 10:48:29.363366
-
-[25] Log opened at 2024-11-09 10:48:29.453036
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] Log closed at 2024-11-09 10:48:29.736104
-
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[24] Log closed at 2024-11-09 10:48:30.142073
-
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] Log closed at 2024-11-09 10:48:30.510336
-
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-09 10:48:33.261241
-
-[25] Log opened at 2024-11-09 10:48:34.078126
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-09 10:48:35.126593
-
-[25] Log opened at 2024-11-09 10:48:36.015830
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-09 10:48:39.403658
-
-[35] Log opened at 2024-11-09 10:49:31.936546
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] Log closed at 2024-11-09 10:49:33.582002
-
-[35] Log opened at 2024-11-09 10:49:33.751944
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] Log closed at 2024-11-09 10:49:34.412585
-
-[30] Log opened at 2024-11-09 10:49:34.745963
-[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] Log opened at 2024-11-09 10:49:34.761527
-[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
-[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] Log opened at 2024-11-09 10:49:34.777226
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] Log opened at 2024-11-09 10:49:34.831656
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] Log opened at 2024-11-09 10:49:34.835810
-[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] Log closed at 2024-11-09 10:49:35.748629
-
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] Log closed at 2024-11-09 10:49:36.352766
-
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] Log closed at 2024-11-09 10:49:36.711955
-
-[30] Log opened at 2024-11-09 10:49:36.747805
-[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-09 10:49:37.189104
-
-[39] Log opened at 2024-11-09 10:49:37.204897
-[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
-[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] Log opened at 2024-11-09 10:49:37.205133
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] Log opened at 2024-11-09 10:49:37.205758
-[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37'
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] Log closed at 2024-11-09 10:49:37.567726
-
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] Log closed at 2024-11-09 10:49:38.300885
-
-[30] Log opened at 2024-11-09 10:49:38.368867
-[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] Log closed at 2024-11-09 10:49:38.652022
-
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[37] Log closed at 2024-11-09 10:49:39.004850
-
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] Log closed at 2024-11-09 10:49:39.357817
-
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] Log closed at 2024-11-09 10:49:42.083368
-
-[30] Log opened at 2024-11-09 10:49:44.196482
-[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] Log closed at 2024-11-09 10:49:45.305698
-
-[30] Log opened at 2024-11-09 10:49:46.209298
-[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] Log closed at 2024-11-09 10:49:49.471182
-
-[25] Log opened at 2024-11-09 10:55:12.452065
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-09 10:55:14.140105
-
-[25] Log opened at 2024-11-09 10:55:14.307299
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-09 10:55:14.971147
-
-[31] Log opened at 2024-11-09 10:55:15.289402
-[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] Log opened at 2024-11-09 10:55:15.389543
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] Log opened at 2024-11-09 10:55:15.389963
-[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] Log opened at 2024-11-09 10:55:15.407559
-[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
-[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] Log opened at 2024-11-09 10:55:15.438288
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] Log closed at 2024-11-09 10:55:16.364941
-
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] Log closed at 2024-11-09 10:55:16.983829
-
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] Log closed at 2024-11-09 10:55:17.313628
-
-[31] Log opened at 2024-11-09 10:55:17.351016
-[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] Log closed at 2024-11-09 10:55:17.821650
-
-[40] Log opened at 2024-11-09 10:55:17.835830
-[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] Log opened at 2024-11-09 10:55:17.835825
-[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35'
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] Log opened at 2024-11-09 10:55:17.836698
-[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
-[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] Log closed at 2024-11-09 10:55:18.220022
-
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] Log closed at 2024-11-09 10:55:18.945263
-
-[31] Log opened at 2024-11-09 10:55:19.017656
-[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] Log closed at 2024-11-09 10:55:19.294258
-
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[35] Log closed at 2024-11-09 10:55:19.646693
-
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] Log closed at 2024-11-09 10:55:20.051162
-
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] Log closed at 2024-11-09 10:55:22.725262
-
-[31] Log opened at 2024-11-09 10:55:23.899792
-[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] Log closed at 2024-11-09 10:55:24.944444
-
-[31] Log opened at 2024-11-09 10:55:26.283870
-[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] Log closed at 2024-11-09 10:55:29.867779
-
-[31] Log opened at 2024-11-09 10:55:31.585426
-[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] Log closed at 2024-11-09 10:55:36.144520
-
-[31] Log opened at 2024-11-09 10:55:40.104582
-[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] Log closed at 2024-11-09 10:55:43.672373
-
-[31] Log opened at 2024-11-09 10:55:48.070457
-[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] Log closed at 2024-11-09 10:55:51.915699
-
-[30] Log opened at 2024-11-09 11:01:13.758953
-[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] Log closed at 2024-11-09 11:01:15.517530
-
-[30] Log opened at 2024-11-09 11:01:15.773523
-[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] Log closed at 2024-11-09 11:01:16.430035
-
-[33] Log opened at 2024-11-09 11:01:16.861201
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] Log opened at 2024-11-09 11:01:16.936897
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] Log opened at 2024-11-09 11:01:16.937923
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] Log opened at 2024-11-09 11:01:17.011146
-[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
-[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] Log opened at 2024-11-09 11:01:17.078032
-[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] Log closed at 2024-11-09 11:01:17.996676
-
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] Log closed at 2024-11-09 11:01:18.626636
-
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-09 11:01:18.959356
-
-[33] Log opened at 2024-11-09 11:01:18.992620
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] Log closed at 2024-11-09 11:01:19.479844
-
-[27] Log opened at 2024-11-09 11:01:19.495960
-[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] Log opened at 2024-11-09 11:01:19.500018
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] Log opened at 2024-11-09 11:01:19.501353
-[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
-[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] Log closed at 2024-11-09 11:01:19.863133
-
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] Log closed at 2024-11-09 11:01:20.556268
-
-[33] Log opened at 2024-11-09 11:01:20.655058
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] Log closed at 2024-11-09 11:01:20.931405
-
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[27] Log closed at 2024-11-09 11:01:21.325106
-
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-09 11:01:21.683157
-
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] Log closed at 2024-11-09 11:01:24.798363
-
-[31] Log opened at 2024-11-09 11:03:01.019202
-[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] Log closed at 2024-11-09 11:03:02.685859
-
-[31] Log opened at 2024-11-09 11:03:02.894326
-[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] Log closed at 2024-11-09 11:03:03.552690
-
-[30] Log opened at 2024-11-09 11:03:04.036463
-[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[42] Log opened at 2024-11-09 11:03:04.045062
-[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
-[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] Log opened at 2024-11-09 11:03:04.057361
-[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] Log opened at 2024-11-09 11:03:04.076285
-[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
-[36] Log opened at 2024-11-09 11:03:04.076288
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[42] Log closed at 2024-11-09 11:03:05.041373
-
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] Log closed at 2024-11-09 11:03:05.734909
-
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] Log closed at 2024-11-09 11:03:06.225813
-
-[30] Log opened at 2024-11-09 11:03:06.244007
-[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
-[42] Log opened at 2024-11-09 11:03:06.244820
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
-[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] Log opened at 2024-11-09 11:03:06.244819
-[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36'
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] Log closed at 2024-11-09 11:03:06.605805
-
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] Log closed at 2024-11-09 11:03:06.953923
-
-[41] Log opened at 2024-11-09 11:03:06.987105
-[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[42] Log closed at 2024-11-09 11:03:07.307490
-
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] Log closed at 2024-11-09 11:03:07.679693
-
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[36] Log closed at 2024-11-09 11:03:08.060272
-
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] Log closed at 2024-11-09 11:03:08.713783
-
-[30] Log opened at 2024-11-09 11:03:08.788290
-[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] Log closed at 2024-11-09 11:03:12.665022
-
-[33] Log opened at 2024-11-09 11:03:29.812561
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] Log closed at 2024-11-09 11:03:31.460193
-
-[33] Log opened at 2024-11-09 11:03:31.665708
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] Log closed at 2024-11-09 11:03:32.328351
-
-[42] Log opened at 2024-11-09 11:03:32.752404
-[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
-[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] Log opened at 2024-11-09 11:03:32.826259
-[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] Log opened at 2024-11-09 11:03:32.828950
-[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
-[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[43] Log opened at 2024-11-09 11:03:32.874208
-[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
-[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] Log opened at 2024-11-09 11:03:32.880157
-[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] Log closed at 2024-11-09 11:03:33.788076
-
-[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[42] Log closed at 2024-11-09 11:03:34.399796
-
-[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] Log closed at 2024-11-09 11:03:34.739046
-
-[42] Log opened at 2024-11-09 11:03:34.770975
-[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
-[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[43] Log closed at 2024-11-09 11:03:35.239635
-
-[31] Log opened at 2024-11-09 11:03:35.254861
-[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] Log opened at 2024-11-09 11:03:35.256656
-[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39'
-[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[43] Log opened at 2024-11-09 11:03:35.257295
-[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43'
-[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] Log closed at 2024-11-09 11:03:35.636711
-
-[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[42] Log closed at 2024-11-09 11:03:36.314365
-
-[42] Log opened at 2024-11-09 11:03:36.386434
-[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
-[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] Log closed at 2024-11-09 11:03:36.664781
-
-[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[39] Log closed at 2024-11-09 11:03:37.015161
-
-[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[43] Log closed at 2024-11-09 11:03:37.379400
-
-[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[42] Log closed at 2024-11-09 11:03:40.530043
-
-[30] Log opened at 2024-11-09 11:10:52.828946
-[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] Log closed at 2024-11-09 11:10:54.542573
-
-[30] Log opened at 2024-11-09 11:10:54.772555
-[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] Log closed at 2024-11-09 11:10:55.439610
-
-[44] Log opened at 2024-11-09 11:10:55.900754
-[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
-[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] Log opened at 2024-11-09 11:10:55.963847
-[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] Log opened at 2024-11-09 11:10:55.973112
-[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] Log opened at 2024-11-09 11:10:56.001523
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] Log opened at 2024-11-09 11:10:56.001526
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] Log closed at 2024-11-09 11:10:57.000267
-
-[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[44] Log closed at 2024-11-09 11:10:57.676997
-
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] Log closed at 2024-11-09 11:10:58.004389
-
-[44] Log opened at 2024-11-09 11:10:58.043438
-[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
-[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-09 11:10:58.371395
-
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] Log closed at 2024-11-09 11:10:58.874650
-
-[40] Log opened at 2024-11-09 11:10:58.903315
-[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40'
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] Log opened at 2024-11-09 11:10:58.904262
-[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] Log opened at 2024-11-09 11:10:58.904903
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[44] Log closed at 2024-11-09 11:10:59.604036
-
-[44] Log opened at 2024-11-09 11:10:59.690156
-[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44'
-[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] Log closed at 2024-11-09 11:11:00.001653
-
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] Log closed at 2024-11-09 11:11:00.382944
-
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[40] Log closed at 2024-11-09 11:11:00.756072
-
-[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[44] Log closed at 2024-11-09 11:11:03.723300
-
-[41] Log opened at 2024-11-09 11:11:56.408305
-[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] Log closed at 2024-11-09 11:11:58.201002
-
-[41] Log opened at 2024-11-09 11:11:58.509334
-[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41'
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[41] Log closed at 2024-11-09 11:11:59.185574
-
-[33] Log opened at 2024-11-09 11:11:59.702619
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] Log opened at 2024-11-09 11:11:59.726113
-[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] Log opened at 2024-11-09 11:11:59.756270
-[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] Log opened at 2024-11-09 11:11:59.787418
-[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[45] Log opened at 2024-11-09 11:11:59.787834
-[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
-[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] Log closed at 2024-11-09 11:12:00.749969
-
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] Log closed at 2024-11-09 11:12:01.407026
-
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] Log closed at 2024-11-09 11:12:01.737053
-
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] Log opened at 2024-11-09 11:12:01.768280
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[25] Log closed at 2024-11-09 11:12:02.139679
-
-[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[45] Log closed at 2024-11-09 11:12:02.658228
-
-[31] Log opened at 2024-11-09 11:12:02.673162
-[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31'
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] Log opened at 2024-11-09 11:12:02.674957
-[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30'
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[45] Log opened at 2024-11-09 11:12:02.675415
-[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45'
-[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] Log closed at 2024-11-09 11:12:03.409585
-
-[33] Log opened at 2024-11-09 11:12:03.481122
-[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33'
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[30] Log closed at 2024-11-09 11:12:03.766122
-
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[31] Log closed at 2024-11-09 11:12:04.124777
-
-[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[45] Log closed at 2024-11-09 11:12:04.505293
-
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[33] Log closed at 2024-11-09 11:12:07.687356
-
-[46] Log opened at 2024-11-09 11:14:25.636258
-[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46'
-[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003.
-[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port).
-[46] Log closed at 2024-11-09 11:14:29.119007
-